gpt4 book ai didi

java - 将包含数组的字符串转换为数组对象

转载 作者:行者123 更新时间:2023-12-01 18:22:38 25 4
gpt4 key购买 nike

你好,我有一个包含数组的字符串!我希望能够将其构造成一个数组,但我找不到任何方法来这样做!有人可以帮助我吗,这就是我的字符串的样子

[111111,111111,111111,111111,111111,111111,111111]

最佳答案

只需取出方括号,然后使用字符串分割方法,以“,”作为分隔符即可。

String str = "[111111,111111,111111,111111,111111,111111,111111]"
//remove the brackets
//as backslash mentioned, str.substring is a better approach than using str.replaceAll with regex
str = str.substring(1, str.length()-1);
//split the string into an array
String[] strArray = str.split(",");

关于java - 将包含数组的字符串转换为数组对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27230878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com