mardi 3 mars 2015

Returning substring of string after first occurence of a comma

How can I take this input CSV file:



0,1
1,2
3,4
5,6,7
8,10
9,10


and return only the substring of each line after the first occurrence of "," so that I get using Java code:



1
2
4
6,7
10
10


Thank you!


Aucun commentaire:

Enregistrer un commentaire