您好,我有一个包含数组的字符串!我希望能够将其构造为数组,但找不到任何方法!有人可以帮我吗,这就是我的绳子的样子
[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(",");