Return to Snippet

Revision: 19593
at October 26, 2009 15:52 by devision


Updated Code
^(\+?)([0-9]+?)(\s?)(\+?)[0-9]+$

Revision: 19592
at October 26, 2009 15:48 by devision


Updated Code
// Accepts:
//  123456789
//  +123123456789
//  +123 123456789

^(\+?)([0-9]+?)(\s?)(\+?)[0-9]+$

Revision: 19591
at October 26, 2009 15:48 by devision


Updated Code
^(\+?)([0-9]+?)(\s?)(\+?)[0-9]+$

Revision: 19590
at October 26, 2009 15:42 by devision


Initial Code
(\+?)[0-9]+[\s](\+?)[0-9]+$

Initial URL


Initial Description
Accepts:
* 123456789
* 123123456789
* 123 123456789

Initial Title
Valid phone number

Initial Tags
regex, phone

Initial Language
Regular Expression