mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-21 19:18:02 +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.
|
||||
|
||||
`^`: Start of line
|
||||
`$`: End of line
|
||||
`()`: Group
|
||||
`[abcd]`: Character set, here `a` until `d`
|
||||
`[a-z]`: Character range, here `a` until `z`
|
||||
`[^b-h]`: Negated character range, here `b` to `h`
|
||||
`.`: Any character
|
||||
`.*`: 0 or more characters
|
||||
`.+`: 1 or more characters
|
||||
`\w`: Word
|
||||
`\w`: Not word
|
||||
`\d`: Digit
|
||||
`\d`: Not digit
|
||||
`\s`: Whitespace
|
||||
`\s`: Not whitespace
|
||||
- `^`: Start of line
|
||||
- `$`: End of line
|
||||
- `()`: Group
|
||||
- `[abcd]`: Character set, here `a` until `d`
|
||||
- `[a-z]`: Character range, here `a` until `z`
|
||||
- `[^b-h]`: Negated character range, here `b` to `h`
|
||||
- `.`: Any character
|
||||
- `.*`: 0 or more characters
|
||||
- `.+`: 1 or more characters
|
||||
- `\w`: Word
|
||||
- `\w`: Not word
|
||||
- `\d`: Digit
|
||||
- `\d`: Not digit
|
||||
- `\s`: Whitespace
|
||||
- `\s`: Not whitespace
|
||||
|
||||
## More tools
|
||||
|
||||
|
|
Loading…
Reference in a new issue