I have a string like 'S10', 'S11' v.v How to split this to ['S','10'], ['S','11'] example:
import re
str = 'S10'
re.compile(...)
result = re.split(str)
result:
print(result)
// ['S','10']
resolved at How to split strings into text and number?