mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-22 06:28: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
|
- `.`: Any character
|
||||||
- `.*`: 0 or more characters
|
- `.*`: 0 or more characters
|
||||||
- `.+`: 1 or more characters
|
- `.+`: 1 or more characters
|
||||||
- `\w`: Word
|
- `\w`: Letter or number
|
||||||
- `\w`: Not word
|
- `\W`: Not letter nor number
|
||||||
- `\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