User Tools

Site Tools


regex:regex

This is an old revision of the document!


Regex

Regular expressions are special characters which help search data, matching complex patterns.


Cheat Sheet

Basic regex

SymbolDescriptions
.replaces any character
^matches start of string
$matches end of string
*matches up zero or more times the preceding character
\Represent special characters
()Groups regular expressions
?Matches up exactly one character

Characters

CharacterLegendExampleSample Match
\dMost engines: one digit from 0 to 9file_\d\dfile_25
\d.NET, Python 3: one Unicode digit in any scriptfile_\d\dfile_9੩
\wMost engines: “word character”: ASCII letter, digit or underscore\w-\w\w\wA-b_1
\w.Python 3: “word character”: Unicode letter, ideogram, digit, or underscore\w-\w\w\w字-ま_۳
\w.NET: “word character”: Unicode letter, ideogram, digit, or connector\w-\w\w\w字-ま‿۳
\sMost engines: “whitespace character”: space, tab, newline, carriage return, vertical taba\sb\sca b c
\s.NET, Python 3, JavaScript: “whitespace character”: any Unicode separatora\sb\sca b c
\DOne character that is not a digit as defined by your engine's \d\D\D\DABC
\WOne character that is not a word character as defined by your engine's \w\W\W\W\W\W*-+=)
\SOne character that is not a whitespace character as defined by your engine's \s\S\S\S\SYoyo

Quantifiers

QuantifierLegendExampleSample Match
+One or moreVersion \w-\w+Version A-b1_1
{3}Exactly three times\D{3}ABC
{2,4}Two to four times\d{2,4}156
{3,}Three or more times\w{3,}regex_tutorial
*Zero or more timesA*B*C*AAACC
?Once or noneplurals?plural

Interval regex

These expressions tell us about the number of occurrences of a character in a string.

ExpressionDescription
{n}Matches the preceding character appearing 'n' times exactly
{n,m}Matches the preceding character appearing 'n' times but not more than m
{n, }Matches the preceding character only when it appears 'n' times or more

Extended regex

These regular expressions contain combinations of more than one expression.

ExpressionDescription
\+Matches one or more occurrence of the previous character
\?Matches zero or one occurrence of the previous character

Brace expansion

The syntax for brace expansion is either a sequence or a comma separated list of items inside curly braces “{}”.

The starting and ending items in a sequence are separated by two periods “..”.

ExpressionDescription
{a,b,c,d}Matches the actual characters in the braces. Example: echo {a,b,c,d}
{a..z}Matches a thru z. Example: echo {a..z}
{0..9}Matches 0 thru 9. Example: echo {0..9}

regex/regex.1598097452.txt.gz · Last modified: 2020/08/22 11:57 by 192.168.1.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki