Hi team please help me on Name Section.
Please provide any regex is there particular name section its not accept special characters and numbers .if you have please reply me.
Thanks in advance.
Regards
Sai
Hi team please help me on Name Section.
Please provide any regex is there particular name section its not accept special characters and numbers .if you have please reply me.
Thanks in advance.
Regards
Sai
HI,
The following expression return True if input string contains character except alphabet and whitespace.
System.Text.RegularExpressions.Regex.IsMatch(yourString,"[^A-Za-z\s]")
Regards,