I want to split the numbers and characters in a string only if a string contains numbers otherwise I don't want to split it.
ex:
String1 = @"hai 1234";
I want to split the this string as
String2 = 1234
String3 = hai;
another ex:
String1 = @"hai"
I don't want to split.