regex:cheat_sheet
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
regex:cheat_sheet [2020/08/22 13:07] – [Inline Modifiers] 192.168.1.1 | regex:cheat_sheet [2021/05/20 23:54] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Regex - Cheat Sheet ====== | ====== Regex - Cheat Sheet ====== | ||
+ | < | ||
+ | Cheat Sheet | ||
+ | Character classes | ||
+ | . any character except newline | ||
+ | \w \d \s word, digit, whitespace | ||
+ | \W \D \S not word, digit, whitespace | ||
+ | [abc] any of a, b, or c | ||
+ | [^abc] not a, b, or c | ||
+ | [a-g] character between a & g | ||
+ | Anchors | ||
+ | ^abc$ start / end of the string | ||
+ | \b word boundary | ||
+ | Escaped characters | ||
+ | \. \* \\ escaped special characters | ||
+ | \t \n \r tab, linefeed, carriage return | ||
+ | \u00A9 unicode escaped © | ||
+ | Groups & Lookaround | ||
+ | (abc) capture group | ||
+ | \1 backreference to group #1 | ||
+ | (?:abc) non-capturing group | ||
+ | (?=abc) positive lookahead | ||
+ | (?!abc) negative lookahead | ||
+ | Quantifiers & Alternation | ||
+ | a* a+ a? 0 or more, 1 or more, 0 or 1 | ||
+ | a{5} a{2,} exactly five, two or more | ||
+ | a{1,3} between one & three | ||
+ | a+? a{2,}? match as few as possible | ||
+ | ab|cd match ab or cd | ||
+ | </ | ||
+ | |||
+ | ---- | ||
===== Basic regex ===== | ===== Basic regex ===== | ||
Line 26: | Line 57: | ||
|\s|.NET, Python 3, JavaScript: " | |\s|.NET, Python 3, JavaScript: " | ||
|\D|One character that is not a digit as defined by your engine' | |\D|One character that is not a digit as defined by your engine' | ||
- | |\W|One character that is not a word character as defined by your engine' | + | |\W|One character that is not a word character as defined by your engine' |
|\S|One character that is not a whitespace character as defined by your engine' | |\S|One character that is not a whitespace character as defined by your engine' | ||
Line 183: | Line 214: | ||
^Modifier^Legend^Example^Sample Match^ | ^Modifier^Legend^Example^Sample Match^ | ||
|(? | |(? | ||
- | |(? | + | |(? |
- | |(? | + | |(? |
|::: | |::: | ||
|::: | |::: | ||
- | |(?m)|In Ruby: the same as (?s) in other engines, i.e. DOTALL mode, i.e. dot matches line breaks|(? | + | |(?m)|In Ruby: the same as (?s) in other engines, i.e. DOTALL mode, i.e. dot matches line breaks.|(?m)From A.*to Z|From A to Z| |
- | |(? | + | |(? |
- | |:::|:::|:::|abc # write on multiple # lines | + | |:::|Spaces must be in brackets|abc< |
- | |::: | + | |
|(?n)|.NET, PCRE 10.30+: named capture only|Turns all (parentheses) into non-capture groups. To capture, use named groups.| | | |(?n)|.NET, PCRE 10.30+: named capture only|Turns all (parentheses) into non-capture groups. To capture, use named groups.| | | ||
|(?d)|Java: Unix linebreaks only|The dot and the < | |(?d)|Java: Unix linebreaks only|The dot and the < | ||
- | |(?^)|PCRE 10.32+: unset modifiers|Unsets ismnx modifiers| | | + | |< |
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | |||
+ | ===== Lookarounds ===== | ||
+ | |||
+ | ^Lookaround^Legend^Example^Sample Match^ | ||
+ | |(? | ||
+ | |< | ||
+ | |(? | ||
+ | |(?< | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Character Class Operations ===== | ||
+ | |||
+ | ^Class Operation^Legend^Example^Sample Match^ | ||
+ | |< | ||
+ | |< | ||
+ | |< | ||
+ | |< | ||
+ | |< | ||
+ | |< | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Other Syntax ===== | ||
+ | |||
+ | ^Syntax^Legend^Example^Sample Match^ | ||
+ | |\K|Keep Out. Perl, PCRE (C, PHP, R…), Python' | ||
+ | |\Q…\E|Perl, | ||
+ |
regex/cheat_sheet.1598101664.txt.gz · Last modified: 2020/08/22 13:07 by 192.168.1.1