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

/
/
g

Test String

Substitution

Processing...

Code Generator

Generated Code

#include <MsgBoxConstants.au3> ; to declare the Constants of MsgBox Local $sRegex = "(\<!--\s\w\:[\d\w]*\:\s--\>)" Local $sString = "Привет, " & @CRLF & _ "" & @CRLF & _ "в этом видео я расскажу, как подвесить картинку на форум с помощью фотохостинга (сервиса хранения картинок)." & @CRLF & _ "Мы будем использовать сервис Itmages: [url:3flgucgy]https://itmages.ru[/url:3flgucgy]" & @CRLF & _ "" & @CRLF & _ "[media:3flgucgy]https://www.youtube.com/embed/jhsjjSZjSco[/media:3flgucgy]" & @CRLF & _ "" & @CRLF & _ "А вот результат:" & @CRLF & _ "" & @CRLF & _ "Ой, прошу пардону! <!-- s:oops: --><img src="{SMILIES_PATH}/svf60a.gif" alt=":oops:" title="Embarrassed" /><!-- s:oops: --> Я- ворона!))) Вижу! Пасиб, Леш! <!-- s:flowers: --><img src="{SMILIES_PATH}/svf05cv.gif" alt=":flowers:" title="Flowers" /><!-- s:flowers: -->" & @CRLF & _ "[quote=&quot;Блик&quot;:15zse657]:ugeek:[/quote:15zse657]" & @CRLF & _ "Функция media работает также как и [mg" & @CRLF & _ "Копируете ссылку на видеохостинге YouTube и вставляете между квадратными скобками. Ссылку на ролик берёте не в строке браузера, а прямую - нажимаете на стрелочку , находящуюся справа внизу от видео, откроется окошко прямой ссылки ее и копируете, затем вставляете здесь." & @CRLF & _ "Фото ирисов" & @CRLF & _ "" & @CRLF & _ "[url=https://itmages.ru/image/view/5378517/7b0c21fd:3flgucgy][img:3flgucgy]http://storage4.static.itmages.ru/i/17/0116/s_1484583205_1067040_7b0c21fdd2.jpg[/img:3flgucgy][/url:3flgucgy]" & @CRLF & _ "" & @CRLF & _ "[quote=&quot;АнаБолик&quot;:25vyhwt9]Леш, а нельзя как- то правильно поставить фотографии?)[/quote:25vyhwt9]" & @CRLF & _ "" & @CRLF & _ "[img:25vyhwt9]http://cs5-3.4pda.to/986240.gif[/img:25vyhwt9]" Local $sSubst = "" Local $sResult = StringRegExpReplace($sString, $sRegex, $sSubst) MsgBox($MB_SYSTEMMODAL, "Result", $sResult)

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 AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm