I am using RegEx in VB.net. What i am looking for is a way to write a pattern to look at the begining of a text file and test it to validate if it begins with a letter.
Ruffnekk
04-27-05, 05:03 AM
The easiest way is to read the first character from the file and test it using the Char.IsLetter function.