Regular Expressions 101

Save & Share

  • Save new Regex
    ctrl+s
  • Update Regex
    ctrl+⇧+s
  • Add to Community Library

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
  • Match everything enclosed
    (?:...)
  • Capture everything enclosed
    (...)
  • 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

/
/
g

Test String

Substitution

Processing...

Code Generator

Generated Code

$re = '/[ ]+|(<([^ ]+)[^>]+>[^<]+<\/\2>)|(<[^>]+>)/'; $str = '<style> .ebayFont{font-family: trebuchet ms;} .colorRed{color:red;} .productDescription{marign-top:20px;font-size: large;} .gaurantedLogo{float: right;margin-right: -215px;margin-top: 3px;opacity: 0.99;width: 107px;} .comment{float: right;font-size: 15px;margin-left: 320px;margin-top: 5px;position: absolute;width: 487px;} .email{color: white;float: right;font-size: 19px;margin-left: 500px;margin-top: 25px;position: absolute;} .phone{color: white;float: right;font-size: 21px;margin-left: 290px;margin-top: 25px;position: absolute;} .productImage{float:left;width: 35%;height:85%;} .productShortDescription{float:right;width: 62%;} </style> <div> <table width="800px"> <tbody> <tr> <td colspan="2" align="center"> <h2 class="ebayFont" style="margin-left: 89px;">Adidas Deodorant - Adidas Ice Dive Deo - For Men - 150 ML</h2> <h3 class="colorRed ebayFont" style="margin-left: 48px;">100% Genuine - No Fake Products - Fast Delivery</h3> <td> </tr> <tr> <td> <div class="productImage"> <img src="/gauranteed%2Blogo.png" class="gaurantedLogo"> <img style="width:500px;z-index:-1;margin-top:50px;" src="/prf100958.jpg"> </div> <div class="productShortDescription" style="width:300px"> <div> <h4 class="ebayFont">PRODUCT INFO:</h4> <p class="ebayFont"> Adidas Ice Dive cologne is sporty fresh, with vibrant citrus scents accented by soft masculine woods. Top notes of grapefruit, lavender and mint lead into a black pepper, bamboo, and kiwi heart and a base composed of sandalwood, tonka bean, grey amber and vanilla. Notes:Top Note: Kiwi, Lavender, Madarin Orange, Yuzu, Mint, Grapefruit, Anise, Bergamot Middle Note: Sandalwood, Patchouli, Geranium Base Note: Tonka Bean, Muck, Vanilla. Pepper, Ambergris </p> </div> <div> <h4 class="ebayFont">BRAND INFO:</h4> <p class="ebayFont"> A brainchild of Adolf Dassler, Adidas is one of the leading sportswear manufacturers in the world. Each and every product manufactured under the brand’s umbrella speaks for immense comfort. Apart from proffering sports clothing,shoes and accessories, this international brand also manufactures eye wear, bags, watches, and sports related goods. </p> </div> <div> <h4 class="ebayFont">BEST FOR:</h4> <p class="ebayFont"> Night Out </p> </div> <div> <h4 class="ebayFont">GENUINE PRODUCT:</h4> <p class="ebayFont"> Be assured that we sell only 100% authentic and imported products. Every product featured on our website is sourced from licensed & authorized dealers only. </p> </div> <div> <h4 class="ebayFont">RETURN POLICY:</h4> <p class="ebayFont"> Although we only sell original products and never compromise on quality, we offer 100% money back guarantee if a product is found to be counterfeit. Terms and Conditions apply* </p> </div> </div> </td> </tr> <tr> <td> <div style="float: right;"> <img src="logo_1.jpg"> </div> </td> </tr><tr> <td> <div> <div class="comment ebayFont">Very Good Fragnance</div> <img src="/whatusersaresaying2.png" style="width:800px;position: relative;z-index:-1;"> </div> </td> </tr> <tr> <td> <div> <img src="/footer+inst.png" style="width:800px;position: relative;"> </div> </td> </tr> <tr> <td> <div> <span class="phone ebayFont">180013001400</span> <span class="email ebayFont">tpsales@collection.com</span> <img src="/footer.png" style="width:800px;position: relative;z-index:-1;"> </div> </td> </tr> </tbody> </table> </div>'; $subst = "$1$3"; $result = preg_replace($re, $subst, $str); echo "The result of the substitution is ".$result;

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