1. To extract a number from the beginning of a String :
^[0-9]+
2. To extract everything else except the number in the beginning of a String :
[^0-9].+
^[0-9]+
2. To extract everything else except the number in the beginning of a String :
[^0-9].+
Comments
Post a Comment