[16] 上的分割功能
我正在尝试从变量中拆分数据,如下所示:
string data = [16]
string [] temp = null
temp.split("\\[");
我在这里感到震惊,如何拆分两个方括号并获取值 16?
I'm trying to split the data from the variable as given below:
string data = [16]
string [] temp = null
temp.split("\\[");
I am struck here, how do I split two square brackets and get values 16?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定您想要字符串“16”还是整数 16,所以我在下面显示了两者
仅供参考,上面的代码适用于
[]
中包含的任何长度的字符串I'm not sure whether you want the String "16" or the Integer 16, so I've shown both below
FYI, the code above will work for a String of any length enclosed in
[]
一点点研究给了我这个选项来替换所有方括号
欢迎任何其他建议
谢谢
A little bit of research gave me this option to replace all square brackets
Any other suggestions are welcome
Thanks