function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Maverick26Maverick26 

Name fields should not allow: 0-9^#*@!_()$%&+>< ( ) | validation rules

Hi Developers,

How can I restrict a string field to not allow  0-9^#*@!_()$%&+>< ( ) | 

Phone should allows only numbers and hyphen 

Thanks in Advance.
Best Answer chosen by Maverick26
CharuDuttCharuDutt
Hii Sai Kiran
Try Below Validation
NOT( REGEX( Name,"[a-zA-Z]*" ) )
Please Mark It As Best Answer If It Helps
Thank You!