Thursday, February 26, 2015

Switch with Regex

Figured it out:



Regex regex = new Regex(@"[A-Z]");
Match match = regex.Match(FirstLetter);

if(match.Success)





If this is helpful please mark it so. Also if this solved your problem mark as answer.


No comments:

Post a Comment