Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
gmix

Test String

Code Generator

Generated Code

$re = '/^ # Start of version string \s* # Ignore leading whitespace (?:v\.?)? # Optional "v" or "v." before the version (?<major>\d+) \. (?<minor>\d+) \. (?<patch>\d+) # MAJOR.MINOR.PATCH (?:- # Pre-release versions start with \'-\' (?<pre> # Capture the pre-release identifier(s) (?: # The PR rules are annoyingly tight [0-9A-Za-z-] # No leading `0`, but a `0` on its own is fine | # More than one character... [1-9A-Za-z-][0-9A-Za-z-]* # ...means no leading zero ) # That\'s the FIRST pre-release identifier (?: # Multiple are allowed... \. # ...dot-separated... (?: # ...with the same rules as above [0-9A-Za-z-] | [1-9A-Za-z-][0-9A-Za-z-]* ) )* # Of course, you can also have just the one ) # End name-cap group `pre` )? # End non-cap group encompassing the leading `-` and the identifiers (?: # Built metadata is SIMILAR, but with two differences: \+ # Difference one: starts with `+` (?<meta> [0-9A-Za-z-]+ # Difference two: leading `0` is allowed, so the match rule is simpler (?:\.[0-9A-Za-z-]+)* # Same dot-delim repetition ) # End name-cap group `meta` )? # End non-cap group encompassing leading `+` and identifiers \s* # Ignore trailing whitespace $ # End version string/mix'; $str = '1.0.0 1.0.0-alpha 1.0.0-alpha.1 1.0.0-0.3.7 1.0.0-x.7.z.92 1.0.0-alpha+001 1.0.0+20130313144700 1.0.0-beta+exp.sha.5114f85'; preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0); // Print the entire match result var_dump($matches);

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for PHP, please visit: http://php.net/manual/en/ref.pcre.php