Regular Expressions 101

Save & Manage Regex

  • Current Version: 1
  • Save & Share
  • 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
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

using System; using System.Text.RegularExpressions; public class Example { public static void Main() { string pattern = @"commer.{1,5} autour"; string input = @"[NE PAS PRENDRE EN COMPTE] ---------------------------------------------------------- -> R1: environnement (\w{1,5}\s)?comme environnement commercial : boulangerie, supérette, boucherie, coiffeur environnement de commerces de proximités (pharmacie,boucherie, boulangerie) environnement commerçant (pharmacie, boulangerie, boucherie) environnement commerçant composé de : nicolas, paul, boucherie -------------------------------- -> R2: enseignes? enseignes telles que boulangerie ange, picard, boucherie dubocage et biocoop (enseignes : intersport, v&b, picard, marie blachere, pizza, boucherie) -------------------------------- -> R3: (voisinage|entour[ée]e) entourée d'une pizzeria, coiffeur, bar/tabac/presse, boucherie au voisinage, entre autre : restauration rapide, boucherie, vin et liqueur voisinage : casino supermarché , burger king, la boucherie -------------------------------- -> R4 : commodités tout autour (boulangerie pâtisserie, , coiffeurs) proximité de commerces tels que : le cic, franprix, boucherie -------------------------------- -> R5 :comm.* (de|à) proximit[ée] commerces de proximité déjà installés : pharmacie, bar-tabac, boucherie commerces de proximité juste à coté : restaurants,boucherie -------------------------------- -> R6 : (secteur|p[oô]le|zone|rue|centre) commer.{1,5} proche rue commerçante (boulangerie, boucherie) près d'une pole commercial composé de boulangeries, boucheries dans une zone commerciale constitué boulangerie, boucherie dans secteur commercial, boulangerie, boucherie situé à l'arrière d'un centre commercial : garage auto, boucherie -------------------------------- -> R7 : activit[eé]s (non autoris[eé]e?s?|interdites|exclue?s?) activités non autorisées : - restauration (pas d'extraction) et boucherie activités interdites : commerce de bouche, boucherie activités exclues : commerce de bouche, boucherie -------------------------------- -> R8 : commerces autour : agence immobilière, boulangerie, boucherie très bel emplacement, boucherie charcuterie traiteur -------------------------------- -> R9 :[aà] (c[oô]té|proximité|autour) boucherie charcuterie traiteur autour supermarché g20, boucherie à proximité supermarché g20, boucherie, boulangerie à côté commerces de proximité juste à coté : restaurants,boucherie on y trouve aussi des commerces de proximité, boulangeries disposant de nombreux commerces, nombreuses offres de restaurations proche toutes commodités : tous types d'activité à l'exception de boulangerie, boucherie services sont à la disposition des utilisateurs : centre ville se prête à toutes activités, boulangerie, boucherie rue de boucheries "; RegexOptions options = RegexOptions.Multiline; foreach (Match m in Regex.Matches(input, pattern, options)) { Console.WriteLine("'{0}' found at index {1}.", m.Value, m.Index); } } }

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 C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx