Sign in
Google apps
Main menu
Post a Comment On:
j4neiros
"Validate contract in C# using REGEX"
No comments yet. -
1 – 0 of 0
String strToTest;
String rePattern = "^[FGHJKMNQUVXZ][0-9]$";
Console.Write("Enter a String to Test for Contract:");
strToTest = Console.ReadLine();
Regex regexPattern = new Regex(rePattern);
Console.WriteLine(regexPattern.IsMatch(strToTest) == true ? "OK" : "KO");
strToTest = Console.ReadLine();
posted by J. Ernesto Aneiros at
4:57 PM
on May 5, 2010
Leave your comment
You can use some HTML tags, such as
<b>, <i>, <a>
Choose an identity
Google Account
You will be asked to sign in after submitting your comment.
Name/URL
Comment with your Google account if you’d like to be able to manage your comments in the future. If you comment anonymously, you won’t be able to edit or delete your comment.
Learn more
Name
URL
Anonymous
Comment with your Google account if you’d like to be able to manage your comments in the future. If you comment anonymously, you won’t be able to edit or delete your comment.
Learn more
Please prove you're not a robot
"Validate contract in C# using REGEX"
No comments yet. -