I have a string of the form:
codename123
Is there a regular expression that can be used with Regex.Split() to split the alphabetic part and
Well, is a one-line only: Regex.Split("codename123", "^([a-z]+)");
Regex.Split("codename123", "^([a-z]+)");