1
0
Fork 0
mirror of https://codeberg.org/Mo8it/How_To_Linux.git synced 2024-10-18 16:22:39 +00:00

Add list identifiers

This commit is contained in:
Mo 2022-08-26 12:49:32 +02:00
parent 84a05eac98
commit dba742033a

View file

@ -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