mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-08-06 03:26:42 -04:00
Convert backslash with html special characters
This commit is contained in:
parent
8c9a7bf273
commit
1a777b9fd6
@ -43,7 +43,7 @@ Meta characters are the building blocks of the regular expressions. Some meta ch
|
||||
|<b>{n}</b>|Braces. Matches “n” repetitions of the preceding symbol.|
|
||||
|<b>(xyz)</b>|Character group. Matches the characters xyz in that exact order.|
|
||||
|<b>|</b>|Alternation. Matches either the characters before or the characters after the symbol.|
|
||||
|<b>\</b>|Escapes the next character. This allows you to match reserved characters `[ ] ( ) { } . * + ? ^ $ \ |`|
|
||||
|<b>\</b>|Escapes the next character. This allows you to match reserved characters `[ ] ( ) { } . * + ? ^ $ \ |`|
|
||||
|<b>^</b>|Matches the beginning of the input.|
|
||||
|<b>$</b>|Matches the end of the input.|
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user