Regular Expressions 101

Save & Manage Regex

  • Current Version: 3
  • 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 = @"((?:.*?)([0-9]{5})(.*?)(?: {7,})(.*?)(?: {3,})(.*?)(?: {3,})(.*?)(\\.*?)(?![0-9\\]{6})(Quartal.*?)?(?=[0-9]{5}|Stand)(?:.*?))"; string input = @"Kassenärztliche Bundesvereinigung KBV\n\n\n\n GOP\n 1) Kurzlegende Kalkulations- Prüfzeit Eignung der\n zeit in in Prüfzeit\n Minuten\n 2) Minuten\n\n 01100 Unvorhergesehene KA ./. Keine Eignung\n Inanspruchnahme I\n 01101 Unvorhergesehene KA ./. Keine Eignung\n Inanspruchnahme II\n 01102 Inanspruchnahme an Samstagen KA ./. Keine Eignung\n 01205 Notfallpauschale (Abklärung, 2 ./. Keine Eignung\n Koordination I)\n 01207 Notfallpauschale (Abklärung, 2 ./. Keine Eignung\n Koordination II)\n 01210 Notfallpauschale I KA ./. Keine Eignung\n 01212 Notfallpauschale II KA ./. Keine Eignung\n 01214 Notfallkonsultationspauschale I KA ./. Keine Eignung\n 01216 Notfallkonsultationspauschale II KA ./. Keine Eignung\n 01218 Notfallkonsultationspauschale III KA ./. Keine Eignung\n 01220 Reanimationskomplex KA ./. Keine Eignung\n 01221 Zuschlag Beatmung KA ./. Keine Eignung\n 01222 Zuschlag Defibrillation KA ./. Keine Eignung\n 01223 Zuschlag Notfallpauschale zur GOP KA ./. Keine Eignung\n 01210\n 01224 Zuschlag Notfallpauschale zur GOP KA ./. Keine Eignung\n 01212\n 01226 Zuschlag Notfallpauschale zur GOP KA ./. Keine Eignung\n 01212\n 01320* Grundpauschale I für ermächtigte KA 6 Nur\n Ärzte, Institute und Krankenhäuser Quartalsprofil\n 01321* Grundpauschale II für ermächtigte KA 11 Nur\n Ärzte, Institute und Krankenhäuser Quartalsprofil\n 01322 Zuschlag TSS-Terminvermittlung KA ./. Keine Eignung\n oder Hausarztvermittlungsfall\n 01323 Zuschlag TSS-Terminvermittlung KA ./. Keine Eignung\n oder Hausarztvermittlungsfall\n 01410 Besuch KA 13 Tages- und\n Quartalsprofil\n 01411 Dringender Besuch I KA ./. Keine Eignung\n 01412 Dringender Besuch II KA ./. Keine Eignung\n 01413 Besuch eines weiteren Kranken KA 6 Tages- und\n Quartalsprofil\n 01414* Visite auf der Belegstation, je KA ./. Keine Eignung\n Patient\n 01415 Dringender Besuch eines KA ./. Keine Eignung\n Patienten in beschützenden\n Wohnheimen bzw. Einrichtungen\n\n\n\nStand 1/2025, erstellt am 10.02.2025 Seite 1279 von 1430\n "; RegexOptions options = RegexOptions.IgnoreCase; 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