How can I split a string which contains a number (of unknown number of digits) into two strings - the number and the rest of the string. Notice that there could be other numbers in the string which should not be affected. For example:
"abc665abc12" -> "abc665abc", "12"
"abc665abc 182" -> "abc665abc", "182"
"abc665abc0" -> "abc665abc", "0"
Thanks!