Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

First split the string. Then parse each element in String array to new array

String[] s=str.split("\D+");
int[] intarray=new int[s.length];
for(int i=0;i<s.length;i++){
   intarray[i]=Integer.parseInt(s[i]);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...