Skip to content

Instantly share code, notes, and snippets.

@ponyjackal
Forked from slawo-ch/regex_non_literals.csv
Created September 3, 2021 16:03
Show Gist options
  • Save ponyjackal/50d50e6fe12fb606b05afd38c193c593 to your computer and use it in GitHub Desktop.
Save ponyjackal/50d50e6fe12fb606b05afd38c193c593 to your computer and use it in GitHub Desktop.
Character Meaning Escaped
^ boundary matcher \^
$ boundary matcher \$
\ escape character \\
{ quantifier notation \{
} quantifier notation \}
[ character class notation \[
] character class notation \]
( group notation \(
) group notation \)
. predefined character class \.
* quantifier \*
+ quantifier \+
? quantifier \?
| OR operator \|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment