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/07/15 09:30] – external edit 127.0.0.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 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: |
- | ===== 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: | ||
- | ---- | + | [[Regex: |
- | ===== Extended regex ===== | + | [[Regex: |
- | These regular expressions contain combinations of more than one expression. | + | [[Regex: |
+ | |||
+ | [[Regex: | ||
- | ^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.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1