Input
string x = "ABC123";
output should be as follows:
string y = "123";
string z = "ABC"
Integers and characters should get separated
Input
if x = "ef14";
output be y = "14"; z = "ef"
if x = "ikj4556";
output be y = "4556"; z = "ikj"
Go to the complete details ...