regex:regex
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
regex:regex [2020/08/20 17:15] – 192.168.1.1 | regex:regex [2022/09/20 23:31] (current) – peter | ||
---|---|---|---|
Line 5: | Line 5: | ||
---- | ---- | ||
- | ===== Basic regex ===== | + | [[Regex:All Text|All Text]] |
- | ^Symbol^Descriptions^ | + | [[Regex:All Text Not Containing|All Text Not Containing]] |
- | |.|replaces any character| | + | |
- | |< | + | |
- | |$|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: |
- | ===== Characters ===== | + | [[Regex: |
- | ^Character^Legend^Example^Sample Match^ | + | [[Regex:Alpha-numeric and underscore|Alpha-numeric and underscore]] |
- | |\d|Most engines: one 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": | + | |
- | |\w|.Python 3: "word character": | + | |
- | |\w|.NET: "word character": | + | |
- | |\s|Most engines: " | + | |
- | |\s|.NET, Python 3, JavaScript: " | + | |
- | |\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' | + | |
- | |\S|One character that is not a whitespace character as defined by your engine' | + | |
- | ---- | + | [[Regex: |
+ | [[Regex: | ||
- | ===== Interval regex ===== | + | [[Regex: |
- | These expressions tell us about the number of occurrences of a character in a string. | + | [[Regex: |
- | ^Expression^Description^ | + | [[Regex: |
- | |{n}|Matches the preceding character appearing ' | + | |
- | |{n, | + | |
- | |{n, }|Matches the preceding character only when it appears ' | + | |
+ | [[Regex: | ||
- | ---- | ||
- | |||
- | ===== Extended regex ===== | ||
- | |||
- | These regular expressions contain combinations of more than one expression. | ||
- | |||
- | ^Expression^Description^ | ||
- | |\+|Matches one or more occurrence of the previous character| | ||
- | |\?|Matches zero or one occurrence of the previous character| | ||
---- | ---- | ||
- | ===== Brace expansion | + | ===== References |
- | The syntax for brace expansion is either a sequence or a comma separated list of items inside curly braces " | + | https://en.wikipedia.org/ |
- | The starting and ending items in a sequence are separated by two periods " | + | https://www.regular-expressions.info/refadv.html |
- | + | ||
- | ^Expression^Description^ | + | |
- | |{a, | + | |
- | |{a..z}|Matches a thru z. | + | |
- | |{0..9}|Matches 0 thru 9. Example: echo {0..9}| | + | |
- | + | ||
- | ---- | + | |
+ | https:// | ||
regex/regex.1597943701.txt.gz · Last modified: 2020/08/20 17:15 by 192.168.1.1