lundi 2 mars 2015

How to extract numbers from a String into an array

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};

Aucun commentaire:

Enregistrer un commentaire