mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-21 19:18:02 +00:00
Fix regex
This commit is contained in:
parent
dba742033a
commit
36e7527c38
1 changed files with 4 additions and 4 deletions
|
@ -67,12 +67,12 @@ Can be used for example with `grep`, `rg`, `find`, `fd`, `nvim`, etc.
|
|||
- `.`: Any character
|
||||
- `.*`: 0 or more characters
|
||||
- `.+`: 1 or more characters
|
||||
- `\w`: Word
|
||||
- `\w`: Not word
|
||||
- `\w`: Letter or number
|
||||
- `\W`: Not letter nor number
|
||||
- `\d`: Digit
|
||||
- `\d`: Not digit
|
||||
- `\D`: Not digit
|
||||
- `\s`: Whitespace
|
||||
- `\s`: Not whitespace
|
||||
- `\S`: Not whitespace
|
||||
|
||||
## More tools
|
||||
|
||||
|
|
Loading…
Reference in a new issue