Skip to content

Instantly share code, notes, and snippets.

@beeeswax
Last active March 1, 2022 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beeeswax/f3cfd5ef4764dd53cf96 to your computer and use it in GitHub Desktop.
Save beeeswax/f3cfd5ef4764dd53cf96 to your computer and use it in GitHub Desktop.
regex reference
# This matches CSS:
\{([A-Za-z0-9 -:\\"; =%/\n@]*)\}
# Good for HTML tags:
<([A-Za-z0-9 -:\\"; =%/\[\]_@]*)>
# Find/replace duplicate lines (for VS Code)
^(.*)(\r?\n\1)+$
$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment