mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-22 01:48:03 +00:00
Add list identifiers
This commit is contained in:
parent
84a05eac98
commit
dba742033a
1 changed files with 15 additions and 15 deletions
|
@ -58,21 +58,21 @@
|
||||||
|
|
||||||
Can be used for example with `grep`, `rg`, `find`, `fd`, `nvim`, etc.
|
Can be used for example with `grep`, `rg`, `find`, `fd`, `nvim`, etc.
|
||||||
|
|
||||||
`^`: Start of line
|
- `^`: Start of line
|
||||||
`$`: End of line
|
- `$`: End of line
|
||||||
`()`: Group
|
- `()`: Group
|
||||||
`[abcd]`: Character set, here `a` until `d`
|
- `[abcd]`: Character set, here `a` until `d`
|
||||||
`[a-z]`: Character range, here `a` until `z`
|
- `[a-z]`: Character range, here `a` until `z`
|
||||||
`[^b-h]`: Negated character range, here `b` to `h`
|
- `[^b-h]`: Negated character range, here `b` to `h`
|
||||||
`.`: Any character
|
- `.`: Any character
|
||||||
`.*`: 0 or more characters
|
- `.*`: 0 or more characters
|
||||||
`.+`: 1 or more characters
|
- `.+`: 1 or more characters
|
||||||
`\w`: Word
|
- `\w`: Word
|
||||||
`\w`: Not word
|
- `\w`: Not word
|
||||||
`\d`: Digit
|
- `\d`: Digit
|
||||||
`\d`: Not digit
|
- `\d`: Not digit
|
||||||
`\s`: Whitespace
|
- `\s`: Whitespace
|
||||||
`\s`: Not whitespace
|
- `\s`: Not whitespace
|
||||||
|
|
||||||
## More tools
|
## More tools
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue