我需要在变量中编辑字符串值。
所以,
0,0,3,4,3,7,5,5,9,3,2
应转换为:
{{1}}
因为我必须将每个数字定义为变量数组,以便逐一阅读。
答案 0 :(得分:1)
如果我是对的,你试图从字符串创建一个数组。使用以下代码
String val = "00343755932";
int[] numberArray = new int[val.length()];
Matcher match = Pattern.compile("[0-9]").matcher(val);
int i = 0;
while(match.find()) {
System.out.println(match.group());
numberArray[i] = Integer.parseInt(match.group());
i++;
}