I have this text:
1 A Maths
And i would like to get only Maths.
I don´t know about regular expressions.
Can any one help me, please?
Thanks
I have this text:
1 A Maths
And i would like to get only Maths.
I don´t know about regular expressions.
Can any one help me, please?
Thanks
Why don't you split the string ?
String chain="A Maths";
String[] array=chain.split(" ");
String number=array[0];
String course=array[1];