/ Published in: C#
Validate any string programmatically via regular expression.
Expand |
Embed | Plain Text
System.Text.RegularExpressions.Regex.IsMatch(someString, someRegularExpression)
You need to login to post a comment.
leonbda on 01/15/09
String validation RegularExpression
2 people have marked this snippet as a favorite
Validate any string programmatically via regular expression.
System.Text.RegularExpressions.Regex.IsMatch(someString, someRegularExpression)
You need to login to post a comment.