Answers for "javascript file with a file that returns true if the passed string looks like a valid South African phone number."

9

js regex validate phone number

My regex of choice is:

/^[\+]?[(]?[0-9]{3}[)]?[-\s\.]?[0-9]{3}[-\s\.]?[0-9]{4,6}$/im
Valid formats:

(123) 456-7890
(123)456-7890
123-456-7890
123.456.7890
1234567890
+31636363634
075-63546725
Posted by: Guest on February-07-2020

Code answers related to "javascript file with a file that returns true if the passed string looks like a valid South African phone number."

Code answers related to "Javascript"

Browse Popular Code Answers by Language