Skip to content

Commit

Permalink
Fix about_Regular_Expressions.md (#11577)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvs authored Dec 11, 2024
1 parent f9bc7a4 commit 4170a6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ To read more about these options and how to use them, visit the
The backslash (`\`) is used to escape characters so they aren't parsed by the
regular expression engine.

The following characters are reserved: `[]().\^$|?*+{}`.
The following characters are reserved: `[().\^$|?*+{`.

You'll need to escape these characters in your patterns to match them in your
input strings.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ To read more about these options and how to use them, visit the
The backslash (`\`) is used to escape characters so they aren't parsed by the
regular expression engine.

The following characters are reserved: `[]().\^$|?*+{}`.
The following characters are reserved: `[().\^$|?*+{`.

You'll need to escape these characters in your patterns to match them in your
input strings.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ To read more about these options and how to use them, visit the
The backslash (`\`) is used to escape characters so they aren't parsed by the
regular expression engine.

The following characters are reserved: `[]().\^$|?*+{}`.
The following characters are reserved: `[().\^$|?*+{`.

You'll need to escape these characters in your patterns to match them in your
input strings.
Expand Down

0 comments on commit 4170a6f

Please sign in to comment.