Regular expressions in asp.net c#
I have a simple query. I am new to regular expression validations in C#.
I want some expression which would allow only single alphabet that means a-z or A-Z开发者_如何转开发. It should not allow whole word. Can anyone suggest me an expression?
The following should work:
[a-zA-Z]+
This expression allows one or more characters in the specified range. And if you want only a single character:
[a-zA-Z]
精彩评论