I have a string, like
12abcdef
1ab2cdef
abcdef
string can start with number or without number but I need to split it into two parts, first number(if any) and second string
I need to split the string as [12,abcdef] [1,ab2cdef][abcdef]
How can I do this in java? which regex expression should I use with spilit in java?