Allowing space in telephone field?
-
I’ve currently got a telephone field with the following regex:
(^\+?\d+$)
However I want to allow spaces. I don’t really understand regex, but have tried:
(^\+?\d+\ $)
(^\+?\d+\ +$ )
(^\+?\d+\s+$ )
And can’t seem to get any of them to work? Any ideas?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Allowing space in telephone field?’ is closed to new replies.