Skip to content

Instantly share code, notes, and snippets.

@CodersArts
Created August 26, 2019 15:15
Show Gist options
  • Save CodersArts/bc69e7db462489d429d82181df41ce0d to your computer and use it in GitHub Desktop.
Save CodersArts/bc69e7db462489d429d82181df41ce0d to your computer and use it in GitHub Desktop.
Regular Expression 14 metacharacters
#14 metacharacters
\ : Used to drop the special meaning of character
[] : character class
^ : matches at beginning
$ : matches at end
. : matches any character(except newline)
? : matches zero or one occurrence
| : or
* : multiple number of occurrence
+ : One or more occurance
{} : Indicate number of occurrences of a preceding RE to match.
() : Enclose a group of REs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment