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

/
/

Test String

Code Generator

Generated Code

// include the latest version of the regex crate in your Cargo.toml extern crate regex; use regex::Regex; fn main() { let regex = Regex::new(r".+@.+\..+").unwrap(); let string = "@ hi@ @hola @hola.com mkyong Abc@example.com user+mailbox/department=shipping@example.com юзер@екзампл.ком θσερ@εχαμπλε.ψομ 伊昭傑@郵件.商務 \"Joe.\\\\Blow\"@example.com \"Fred Bloggs\"@example.com hi@ mkyong@.com.my mkyong123@gmail.a mkyong123@.com mkyong123@.com.com .mkyong@mkyong.com mkyong()*@gmail.com mkyong@%*.com mkyong..2002@gmail.com mkyong.@gmail.com mkyong@mkyong@gmail.com mkyong@gmail.com.1a \"user1@hotmail.com; user2@gmail.com\" \"user1@hotmail.com; user2@gmail.com; user3@company.com\" \"User Display Name user3@company.com\" \"user4 @company.com\" List of Valid Email Addresses email@example.com firstname.lastname@example.com email@subdomain.example.com firstname+lastname@example.com email@123.123.123.123 email@[123.123.123.123] \"email\"@example.com 1234567890@example.com email@example-one.com _______@example.com email@example.name email@example.museum email@example.co.jp firstname-lastname@example.com much.”more\\ unusual”@example.com very.unusual.”@”.unusual.com@example.com very.”(),:;<>[]”.VERY.”very@\\\\ \"very”.unusual@strange.example.com plainaddress #@%^%#$@#$@#.com @example.com Joe Smith <email@example.com> email.example.com email@example@example.com .email@example.com email.@example.com email..email@example.com あいうえお@example.com email@example.com (Joe Smith) email@example email@-example.com email@example.web email@111.222.333.44444 email@example..com plainaddress #@%^%#$@#$@#.com ”(),:;<>[\\]@example.com just”not”right@example.com this\\ is\"really\"not\\allowed@example.com @example.com Joe Smith <email@example.com> email.example.com email@example@example.com .email@example.com email.@example.com email..email@example.com あいうえお@example.com email@example.com (Joe Smith) email@example email@-example.com email@example.web email@111.222.333.44444 email@example..com Abc..123@example.com Abc..123@example.com much.”more\\ unusual”@example.com very.unusual.”@”.unusual.com@example.com very.”(),:;<>[]”.VERY.”very@\\\\ \"very”.unusual@strange.example.com email@example.com firstname.lastname@example.com email@subdomain.example.com firstname+lastname@example.com email@123.123.123.123 email@[123.123.123.123] \"email\"@example.com 1234567890@example.com email@example-one.com _______@example.com email@example.name email@example.museum email@example.co.jp firstname-lastname@example.com "; // result will be a tuple containing the start and end indices for the first match in the string let result = regex.captures(string); let (start, end) = match result { Some((s, e)) => (s, e), None => { // ... } }; println!("{}", &string[start, end]); }

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 Rust, please visit: https://docs.rs/regex/latest/regex/