Skip to content

Instantly share code, notes, and snippets.

@hvardhanx
Created May 18, 2018 10:09
Show Gist options
  • Save hvardhanx/789ba46f25d9df3f795f84730d2f49bd to your computer and use it in GitHub Desktop.
Save hvardhanx/789ba46f25d9df3f795f84730d2f49bd to your computer and use it in GitHub Desktop.
. = any char
\. = the actual dot character
.? = .{0,1} = match any char zero or one times
.* = .{0,} = match any char zero or more times
.+ = .{1,} = match any char one or more times
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment