104 regular expressions found in this category!
Displaying page
of
pages;
Items to
Title |
Test
Details
Pattern Title
|
Expression |
[0-9]{4}\s*[a-zA-Z]{2} |
Description |
Dutch zip code expression
4 numbers - space yes/no - 2 letters
|
Matches |
1054 WD | 1054WD | 1054 wd |
Non-Matches |
10543 |
Author |
Rating:
Not yet rated.
Roland Mensenkamp
|
Title |
Test
Details
Pattern Title
|
Expression |
((\(\d{3}\)?)|(\d{3}))([\s-./]?)(\d{3})([\s-./]?)(\d{4}) |
Description |
US Phone number that accept a dot, a space, a dash, a forward slash, between the numbers. Will Accept a 1 or 0 in front. Area Code not necessary |
Matches |
1.2123644567 | 0-234.567/8912 | 1-(212)-123 4567 |
Non-Matches |
0-212364345 | 1212-364,4321 | 0212\345/6789 |
Author |
Rating:
Not yet rated.
Mart Maasikas
|
Title |
Test
Details
Pattern Title
|
Expression |
(?<zip5>^\d{5})([\- ]?(?<plus4>\d{4})?$) |
Description |
Zip Code (Zip or Zip-Plus4 format). Accepts a hyphen, a space, or nothing between Zip and Plus4 segments. Named segments <zip> and <plus4> may be used to reformat users input to desired format using Regex replace function (re.replace). |
Matches |
92078 | 92078-4705 | 92078-4705 |
Non-Matches |
9207 | 92078470 | 92078*4705 |
Author |
Rating:
Not yet rated.
MARK J KRISBURG
|
Title |
Test
Details
Pattern Title
|
Expression |
^(9,)*([1-9]\d{2}-?)*[1-9]\d{2}-?\d{4}$ |
Description |
Validates US or Canadian phone numbers with the use of "-" or numbers stuck together. No parantheses allowed as well as spaces. Area code is optional. The "9," is optional as well, which on some phone systems is needed to dial out. |
Matches |
9,5143393044 | 9,514-339-3044 | 339-3044 |
Non-Matches |
9,339 3044 | 514 440 2009 | (514) 440-2009 |
Author |
Rating:
Not yet rated.
Max Cacchiotti
|
Title |
Test
Details
Pattern Title
|
Expression |
^\(?(?<AreaCode>[2-9]\d{2})(\)?)(-|.|\s)?(?<Prefix>[1-9]\d{2})(-|.|\s)?(?<Suffix>\d{4})$ |
Description |
US telephone number with area code. Validates and also captures AreaCode, Prefix and Suffix for reformatting. |
Matches |
(213) 343-1234 | 213-343-1234 | 213 343 1234 |
Non-Matches |
343-1234 |
Author |
Rating:
Not yet rated.
MARK J KRISBURG
|
Title |
Test
Details
Validate US Postal Code
|
Expression |
^(?!00000)(?<zip>(?<zip5>\d{5})(?:[ -](?=\d))?(?<zip4>\d{4})?)$ |
Description |
Validate US zip codes. Matches all zip codes of exactly 5 digits except 00000. Optionally, matches zip5+zip4 where zip5 is exactly 5 digits, zip4 is exactly 4 digits, and zip5 and zip4 are, optionally, separated by a single space or hyphen. Captures zip5 and zip4 to named groups to facilitate program manipulation. |
Matches |
12345 | 123456789 | 12345-6789 |
Non-Matches |
12345- | 00000 | 00000-6789 |
Author |
Rating:
Not yet rated.
Jerry Schmersahl
|
Title |
Test
Details
Pattern Title
|
Expression |
^[\\(]{0,1}([0-9]){3}[\\)]{0,1}[ ]?([^0-1]){1}([0-9]){2}[ ]?[-]?[ ]?([0-9]){4}[ ]*((x){0,1}([0-9]){1,5}){0,1}$ |
Description |
US Telephone Number where this is regular expression excludes the first number, after the area code,from being 0 or 1; it also allows an extension
to be added where it does not have to be prefixed by 'x'. |
Matches |
(910)456-7890 | (910)456-8970 x12 | (910)456-8970 1211 |
Non-Matches |
(910) 156-7890 | (910) 056-7890 | (910) 556-7890 x |
Author |
Rating:
Not yet rated.
Bill Anderson
|
Title |
Test
Details
Pattern Title
|
Expression |
(^0.*[1-9]*)|(^860+)|(^8613)|(\D)|([0-9]) |
Description |
forbidden tele numbers when it starts with 0,
860+,8613,character or has any SBC case.
you can also use it to any international phone dialed by E1 ,etc . this regex has been tested by java, perl,.net
PS: the last regex [0-9]is in SBC case |
Matches |
0234568 | 8601063971622 | 1-221555 |
Non-Matches |
861063971622 |
Author |
Rating:
Not yet rated.
qi gao
|
Title |
Test
Details
Pattern Title
|
Expression |
^([0-9]{5})([\-]{1}[0-9]{4})?$ |
Description |
Validates against a U.S. postal code in either a 5 digit format or a 5 dash 4 format. |
Matches |
18017 | 18017-1401 |
Non-Matches |
1801A | 18017- | 18017-152A |
Author |
Rating:
Not yet rated.
Jeff Johns
|
Title |
Test
Details
Pattern Title
|
Expression |
^0(6[045679][0469]){1}(\-)?(1)?[^0\D]{1}\d{6}$ |
Description |
Validates Austrian Cellular Phone Numbers. Works with ONE, T-Mobile, A1, Telering and new Provider "Drei". WITHOUT Country Code Verification. |
Matches |
0664-1234567 | 06641234567 | 0699-11234567 |
Non-Matches |
06991-1234567 | +43650-1234567 | 07661234567 |
Author |
Rating:
Not yet rated.
Stefan Beylen
|
Title |
Test
Details
Pattern Title
|
Expression |
^((([A-PR-UWYZ])([0-9][0-9A-HJKS-UW]?))|(([A-PR-UWYZ][A-HK-Y])([0-9][0-9ABEHMNPRV-Y]?))\s{0,2}(([0-9])([ABD-HJLNP-UW-Z])([ABD-HJLNP-UW-Z])))|(((GI)(R))\s{0,2}((0)(A)(A)))$ |
Description |
Validates UK postcodes and aligns in parenthesized subpatterns according to standard UK postcode elements. Validation is according to guidelines outlined at http://www.govtalk.gov.uk/gdsc/html/noframes/PostCode-2-1-Release.htm
Postcode elements are separated according to description at http://www.graticule.com/data/uk/pcdata.html
Expression is not thoroughly tested, but seems to be doing ok so far!
Comments and improvements welcome. |
Matches |
GIR 0AA | SW1Y 1AA | AB1 4BL |
Non-Matches |
XVJ P09 | GB7Z 1HQ | Q1 1AA |
Author |
Rating:
Not yet rated.
Christopher Townson
|
Title |
Test
Details
Pattern Title
|
Expression |
^[A-Za-z]{1,2}[\d]{1,2}([A-Za-z])?\s?[\d][A-Za-z]{2}$ |
Description |
UK Postal Codes - The code is normally written in capital letters with a space between the outer and inner parts; it is understandable if the space is omitted.
This regular expression validates upper or lower case with or without the space:
|
Matches |
CF1 2AA | cf564fg |
Non-Matches |
a1234d | A12 77Y |
Author |
Rating:
Not yet rated.
Scott Pite
|
Title |
Test
Details
Pattern Title
|
Expression |
^[+][0-9]\d{2}-\d{3}-\d{4}$ |
Description |
This is a basic telephone number vaildation which needs a compulsory prefix of a '+' sign with three digits and followed by a hipen, another three digits and finally followed by another hipen and four more digits.
Regards,
Senthil Gunabalan |
Matches |
+974-584-5656 | +000-000-0000 | +323-343-3453 |
Non-Matches |
974-584-5656 | +974 000 0000 |
Author |
Rating:
Not yet rated.
Senthil Gunabalan
|
Title |
Test
Details
Pattern Title
|
Expression |
^[abceghjklmnprstvxyABCEGHJKLMNPRSTVXY][0-9][abceghjklmnprstvwxyzABCEGHJKLMNPRSTVWXYZ] {0,1}[0-9][abceghjklmnprstvwxyzABCEGHJKLMNPRSTVWXYZ][0-9]$ |
Description |
Canadian Postal Code / Codes / Canada / Zip
Google for DFIOQU and you'll see where I got the
info for this.
Can anyone simplify this?
|
Matches |
G3M 5T9 | C3M5T9 |
Non-Matches |
Z3M 5T9 | W3M 5T9 | 5T9 C3M |
Author |
Rating:
Not yet rated.
W. D.
|
Title |
Test
Details
Pattern Title
|
Expression |
^([\+][0-9]{1,3}[\.][0-9]{1,12})([x]?[0-9]{1,4}?)$ |
Description |
Validates on the following standards:
+CCC.ZZZZZZZZZZxYYYY, where 'C' is the numeric
country phone code (up to three digits), 'Z' is the phone number (up to
12 digits) and 'Y' is the extension (up to 4 digits); max length overall is
20 characters, including the '+', '.', and 'x' (if extension is present).
Useful for people communicating with the OpenSRS API |
Matches |
+800.4453377x4444 | +80.4453377 | +8.123456789123x1111 |
Non-Matches |
181823884499 | +800.4453377x | 2486994x11 |
Author |
Rating:
Not yet rated.
Hayk A
|
Title |
Test
Details
UK Phone Number
|
Expression |
^((\(?0\d{4}\)?\s?\d{3}\s?\d{3})|(\(?0\d{3}\)?\s?\d{3}\s?\d{4})|(\(?0\d{2}\)?\s?\d{4}\s?\d{4}))(\s?\#(\d{4}|\d{3}))?$ |
Description |
UK phone number. Allows 3, 4 or 5 digit regional prefix, with 8, 7 or 6 digit phone number respectively, plus optional 3 or 4 digit extension number prefixed with a # symbol. Also allows optional brackets surrounding the regional prefix and optional spaces between appropriate groups of numbers. |
Matches |
01222 555 555 | (010) 55555555 #2222 | 0122 555 5555#222 |
Non-Matches |
01222 555 5555 | (010) 55555555 #22 | 0122 5555 5555#222 |
Author |
Rating:
Not yet rated.
Amos Hurd
|
Title |
Test
Details
UK Mobile Phone Number
|
Expression |
^(\+44\s?7\d{3}|\(?07\d{3}\)?)\s?\d{3}\s?\d{3}$ |
Description |
UK mobile phone number, with optional +44 national code. Allows optional brackets and spaces at appropriate positions. |
Matches |
07222 555555 | (07222) 555555 | +44 7222 555 555 |
Non-Matches |
7222 555555 | +44 07222 555555 | (+447222) 555555 |
Author |
Rating:
Not yet rated.
Amos Hurd
|
Title |
Test
Details
Pattern Title
|
Expression |
^([+]39)?((38[{8,9}|0])|(34[{7-9}|0])|(36[6|8|0])|(33[{3-9}|0])|(32[{8,9}]))([\d]{7})$ |
Description |
Validates a Italian mobile phone number with (or without) the International code |
Matches |
+393471234567 | 3381234567 |
Non-Matches |
+39 3401234567 | 347 1234567 | 338-1234567 |
Author |
Rating:
Not yet rated.
Fabrizio Fortini
|
Title |
Test
Details
Pattern Title
|
Expression |
^[01]?[- .]?\(?[2-9]\d{2}\)?[- .]?\d{3}[- .]?\d{4}$ |
Description |
U. S. or Canadian telephone number regular expression. <BR>
<BR>
// # Checks phone numbers for validity <BR>
// [01]? # optional '0', or '1' <BR>
// [- .]? # optional separator is either a dash, a space, or a period. <BR>
// \(? # optional parentheses <BR>
// [2-9] # first # of the area code must not be a '0' or '1' <BR>
// \d{2} # next 2 digits of area code can be 0-9 <BR>
// \)? # optional parentheses <BR>
// [- .]? # optional separator is either a dash, a space, or a period. <BR>
// \d{3} # 3-digit prefix <BR>
// [- .]? # optional separator is either a dash, a space, or a period. <BR>
// \d{4} # 4-digit station number <BR>
|
Matches |
18008793262 | 800-879-3262 | 0-800.879.3262 |
Non-Matches |
879 3262 | 077 879 3262 | 879-3262 |
Author |
Rating:
Not yet rated.
W. D.
|
Title |
Test
Details
Pattern Title
|
Expression |
([\(]?(?<AreaCode>[0-9]{3})[\)]?)?[ \.\-]?(?<Exchange>[0-9]{3})[ \.\-](?<Number>[0-9]{4}) |
Description |
This was used to process a bunch of lines of information to determine if a line was a North American phone number or not. It accepts numbers with or without area code with or without parenthesis and sepearated by space, dash or period. |
Matches |
(602) 555-3696 | 555-2069 | 213.555.8954 |
Non-Matches |
225-582 | 11000 |
Author |
Rating:
Not yet rated.
Jared Tullis
|
Displaying page
of
pages;
Items to