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
Raghvendra Singh 22Raghvendra Singh 22 

Phone validation in the format of e.164 ?? international format

Hi All,

I want to validate phone number in E.164 format?
Please help me
 
Best Answer chosen by Raghvendra Singh 22
sfdcMonkey.comsfdcMonkey.com
Hi , please refer below link for similar issue :

https://stackoverflow.com/questions/6478875/regular-expression-matching-e-164-formatted-phone-numbers
in validation fule you can use something like this :
NOT( 
REGEX(Phone, "^\\+?[1-9]\\d{1,14}$") 
)
example of valid number :
+442071838750

Kindly let us know if it helps you
Thanks