[16] 上的分割功能

发布于 2024-12-02 09:56:54 字数 149 浏览 0 评论 0原文

我正在尝试从变量中拆分数据,如下所示:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枫以 2024-12-09 09:56:55

我不确定您想要字符串“16”还是整数 16,所以我在下面显示了两者

String data = "[16]"

assert "16" == data[1..-2]
assert 16 == data[1..-2].toInteger()

仅供参考,上面的代码适用于 [] 中包含的任何长度的字符串

I'm not sure whether you want the String "16" or the Integer 16, so I've shown both below

String data = "[16]"

assert "16" == data[1..-2]
assert 16 == data[1..-2].toInteger()

FYI, the code above will work for a String of any length enclosed in []

说谎友 2024-12-09 09:56:55

一点点研究给了我这个选项来替换所有方括号

string.replaceAll("\\[|\\]","");

欢迎任何其他建议

谢谢

A little bit of research gave me this option to replace all square brackets

string.replaceAll("\\[|\\]","");

Any other suggestions are welcome

Thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文