1 月 312010
 

REGex TESTER v1.5.3 – test/validate regular expressions, online tester

Regex Examples (PCRE)

Regular expression examples for decimals input

Positive Integers — ^\d+$

Negative Integers — ^-\d+$

Integer — ^-{0,1}\d+$

Positive Number — ^\d*\.{0,1}\d+$

Negative Number — ^-\d*\.{0,1}\d+$

Positive Number or Negative Number – ^-{0,1}\d*\.{0,1}\d+$

Phone number — ^\+?[\d\s]{3,}$

Phone with code — ^\+?[\d\s]+\(?[\d\s]{10,}$

Year 1900-2099 — ^(19|20)[\d]{2,2}$

Date (dd mm yyyy, d/m/yyyy, etc.) — ^([1-9]|0[1-9]|[12][0-9]|3[01])\D([1-9]|0[1-9]|1[012])\D(19[0-9][0-9]|20[0-9][0-9])$

IP v4 — ^(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]){3}$

Regular expression examples for Alphabetic input

Personal Name — ^[\w\.\']{2,}([\s][\w\.\']{2,})+$

Username — ^[\w\d\_\.]{4,}$

Password at least 6 symbols — ^.{6,}$

Password or empty input — ^.{6,}$|^$

email — ^[\_]*([a-z0-9]+(\.|\_*)?)+@([a-z][a-z0-9\-]+(\.|\-*\.))+[a-z]{2,6}$

domain — ^([a-z][a-z0-9\-]+(\.|\-*\.))+[a-z]{2,6}$

Other regular expressions

Match no input — ^$

Match blank input — ^\s[\t]*$

Match New line — [\r\n]|$

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

CAPTCHA Image
Play CAPTCHA Audio
Reload Image