From 1a777b9fd64db040313e30fa470b44958aacc5fe Mon Sep 17 00:00:00 2001 From: Zeeshan Ahmed Date: Sun, 23 Jul 2017 04:42:12 +0100 Subject: [PATCH] Convert backslash with html special characters --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75eec96..73da0f1 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Meta characters are the building blocks of the regular expressions. Some meta ch |{n}|Braces. Matches ā€œnā€ repetitions of the preceding symbol.| |(xyz)|Character group. Matches the characters xyz in that exact order.| |||Alternation. Matches either the characters before or the characters after the symbol.| -|\|Escapes the next character. This allows you to match reserved characters `[ ] ( ) { } . * + ? ^ $ \ |`| +|\|Escapes the next character. This allows you to match reserved characters `[ ] ( ) { } . * + ? ^ $ \ |`| |^|Matches the beginning of the input.| |$|Matches the end of the input.|