give this regex a shot:myRegEx = New Regex("^[^\d*](\w)*")you need to put the [^\d*] in there to tell it that you don't want digits tostart out with. it'll let digits pass through after the first nondigitchar.