User Tools

Site Tools


regex:regex

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
regex:regex [2020/08/22 11:57] 192.168.1.1regex:regex [2022/09/20 23:31] (current) peter
Line 5: Line 5:
 ---- ----
  
-[[Regex:Cheat Sheet|Cheat Sheet]]+[[Regex:All Text|All Text]]
  
 +[[Regex:All Text Not Containing|All Text Not Containing]]
  
-===== Basic regex =====+[[Regex:Alpha|Alpha]]
  
-^Symbol^Descriptions^ +[[Regex:Alpha-numeric|Alpha-numeric]]
-|.|replaces any character| +
-|<nowiki>^</nowiki>|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|+
  
-----+[[Regex:Alpha-numeric and underscore|Alpha-numeric and underscore]]
  
-===== Characters =====+[[Regex:Cheat Sheet|Cheat Sheet]]
  
-^Character^Legend^Example^Sample Match^ +[[Regex:Chinese characters|Chinese characters]]
-|\d|Most enginesone digit from 0 to 9|file_\d\d|file_25| +
-|\d|.NET, Python 3: one Unicode digit in any script|file_\d\d|file_9੩| +
-|\w|Most engines: "word character": ASCII letter, digit or underscore|\w-\w\w\w|A-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|字-ま‿۳| +
-|\s|Most engines: "whitespace character": space, tab, newline, carriage return, vertical tab|a\sb\sc|a b c| +
-|\s|.NET, Python 3, JavaScript: "whitespace character": any Unicode separator|a\sb\sc|a b c| +
-|\D|One character that is not a digit as defined by your engine's \d|\D\D\D|ABC| +
-|\W|One character that is not a word character as defined by your engine's \w|\W\W\W\W\W|*-+=)| +
-|\S|One character that is not a whitespace character as defined by your engine's \s|\S\S\S\S|Yoyo|+
  
-----+[[Regex:Digits|Digits]]
  
-===== Quantifiers =====+[[Regex:File Path|File Path]]
  
-^Quantifier^Legend^Example^Sample Match^ +[[Regex:Numbers|Numbers]]
-|+|One or more|Version \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 times|A*B*C*|AAACC| +
-|?|Once or none|plurals?|plural|+
  
----- +[[Regex:Unicode|Unicode]]
- +
-===== Interval regex ===== +
- +
-These expressions tell us about the number of occurrences of a character in a string. +
- +
-^Expression^Description^ +
-|{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 =====+===== References =====
  
-These regular expressions contain combinations of more than one expression.+https://en.wikipedia.org/wiki/Regular_expression
  
-^Expression^Description^ +https://www.regular-expressions.info/refadv.html
-|\+|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 ".."+
- +
-^Expression^Description^ +
-|{a,b,c,d}|Matches the actual characters in the braces.  Exampleecho {a,b,c,d}| +
-|{a..z}|Matches a thru z Example: echo {a..z}| +
-|{0..9}|Matches 0 thru 9.  Example: echo {0..9}| +
- +
-----+
  
 +https://www.rexegg.com/regex-disambiguation.html
  
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