import re
text = "2aab13c"
print(re.findall(r'\d+\D*', text))
print(re.split(r'(?<=\D)(?=\d)', text))
