π§©Regex
π Notebooks
π© Meta Characters
π Character Matches
π Symbol | π Description |
| Single character |
| Start of a string |
| End of a string |
| One of the set of characters within |
| One of the range of characters |
| Not |
|
|
| Scoping for operators |
| Passive grouping (details) |
| Escape character |
π Character Symbols
π Symbol | π Description | π€― Equivalent |
| Word boundary | |
| Any digit |
|
| Any non-digit |
|
| Any whitespace |
|
| Any non-whitespace |
|
| Alphanumeric character |
|
| Non-alphanumeric character |
|
π« Repetitions
π Symbol | π Description |
| Zero or more occurrences |
| One or more occurrences |
| Zero or one occurrences |
| Exactly |
| At least |
| At most |
| At least |
π§ Useful Examples
𧩠Regex | π Description |
| Finds all lines start with specific string |
π References
π Regex debugger
Last updated