I\'ve been looking through pages and pages of Google results but haven\'t come across anything that could help me.
What I\'m trying to do is split a string like
You need to Replace and then split the string.You can't do it with the split alone
Replace
split
1> Replace All the string with the following regex
Replace All
(\\w+?)(\\d+)
and replace it with
$1:$2
2> Now Split it with this regex
Split
(?<=\\d)(?=[a-zA-Z])