Need Name for Regex

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

@Saikrishna_Mada

Can you please show some input and what output is expected?

cheers

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,