Save & Share

  • Current Version: 1
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java
  • .NET 7.0 (C#)
  • Rust
  • PCRE (Legacy)
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests
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
Processing...

Test String

Code Generator

Generated Code

import re regex = re.compile(r"^(?:(?:Accident Only Hospital (?:500 - Basic|750 - Basic)|B(?:asic (?:Accident Only Hospital \$(?:500 Excess|750 Excess)|Hospital Cover with \$(?:250 Excess|500 Excess)|Plus Starter Hospital \$(?:500 Excess|750 Excess))|ASIC HOSPITAL COVER|ronze Plus Simple Hospital \$(?:250 Excess|500 Excess|750 Excess)|udget (?:Family Hospital (?:Cover with \$(?:250 Excess|500 Excess)|\$750 Excess)|Hospital (?:with \$(?:1000 Excess(?: and Ambulance Levy)?|250 Excess(?: and Ambulance Levy)?|500 Excess(?: and Ambulance Levy)?)|\$750 Excess - Bronze Plus)))|Established Family Hospital Cover with \$(?:250 Excess|500 Excess|750 Excess)|G(?:old Complete Hospital \$(?:500 Excess|750 Excess)|rowing Family Hospital Cover with \$(?:250 Excess|500 Excess))|Prime Plus with (?:Nil Excess Hospital|\$(?:250 Excess Hospital|500 Excess Hospital))|Si(?:mple Start Hospital Cover|lver Plus (?:Advanced Hospital \$(?:250 Excess|500 Excess|750 Excess)|Essential Hospital \$(?:250 Excess|500 Excess)))|Top Hospital (?:with Pregnancy(?: (?:- Gold|\$(?:250 Excess(?: - Gold)?|500 Excess(?: - Gold)?|750 Excess(?: - Gold)?)))?|Cover no Pregnancy(?: with \$(?:250 Excess|500 Excess))?)))$", flags=re.MULTILINE) test_str = ("Accident Only Hospital 750 - Basic\n" "Accident Only Hospital 500 - Basic\n" "Basic Accident Only Hospital $500 Excess\n" "Basic Accident Only Hospital $750 Excess\n" "Basic Hospital Cover with $250 Excess\n" "Basic Hospital Cover with $500 Excess\n" "BASIC HOSPITAL COVER\n" "Basic Plus Starter Hospital $500 Excess\n" "Basic Plus Starter Hospital $750 Excess\n" "Bronze Plus Simple Hospital $250 Excess\n" "Bronze Plus Simple Hospital $500 Excess\n" "Bronze Plus Simple Hospital $750 Excess\n" "Budget Family Hospital Cover with $250 Excess\n" "Budget Family Hospital Cover with $500 Excess\n" "Budget Family Hospital $750 Excess\n" "Budget Hospital with $500 Excess and Ambulance Levy\n" "Budget Hospital with $500 Excess\n" "Budget Hospital with $250 Excess and Ambulance Levy\n" "Budget Hospital with $250 Excess\n" "Budget Hospital with $1000 Excess and Ambulance Levy\n" "Budget Hospital with $1000 Excess\n" "Budget Hospital $750 Excess - Bronze Plus\n" "Established Family Hospital Cover with $250 Excess\n" "Established Family Hospital Cover with $500 Excess\n" "Established Family Hospital Cover with $750 Excess\n" "Gold Complete Hospital $500 Excess\n" "Gold Complete Hospital $750 Excess\n" "Growing Family Hospital Cover with $250 Excess\n" "Growing Family Hospital Cover with $500 Excess\n" "Prime Plus with Nil Excess Hospital\n" "Prime Plus with $250 Excess Hospital\n" "Prime Plus with $500 Excess Hospital\n" "Simple Start Hospital Cover\n" "Silver Plus Advanced Hospital $250 Excess\n" "Silver Plus Advanced Hospital $500 Excess\n" "Silver Plus Advanced Hospital $750 Excess\n" "Silver Plus Essential Hospital $250 Excess\n" "Silver Plus Essential Hospital $500 Excess\n" "Silver Plus Essential Hospital $500 Excess\n" "Top Hospital with Pregnancy\n" "Top Hospital with Pregnancy - Gold\n" "Top Hospital with Pregnancy $250 Excess\n" "Top Hospital with Pregnancy $250 Excess - Gold\n" "Top Hospital with Pregnancy $500 Excess\n" "Top Hospital with Pregnancy $500 Excess - Gold\n" "Top Hospital with Pregnancy $750 Excess\n" "Top Hospital with Pregnancy $750 Excess - Gold\n" "Top Hospital Cover no Pregnancy\n" "Top Hospital Cover no Pregnancy with $250 Excess\n" "Top Hospital Cover no Pregnancy with $500 Excess") matches = regex.finditer(test_str) for match_num, match in enumerate(matches, start=1): print(f"Match {match_num} was found at {match.start()}-{match.end()}: {match.group()}") for group_num, group in enumerate(match.groups(), start=1): print(f"Group {group_num} found at {match.start(group_num)}-{match.end(group_num)}: {group}")

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 Python, please visit: https://docs.python.org/3/library/re.html