I need to put all numeric values stored in a String into an array:
String str = "12,1,222,55";
If I do this, then it will merge all numbers:
str = str.replaceAll("\D+","");
How to get something like this?:
int[] result = new int[]{12,1,122,55};
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…