Skip to content

Instantly share code, notes, and snippets.

@sakshamsaxena
Created October 6, 2018 06:12
Show Gist options
  • Save sakshamsaxena/2019436719b60a27a7652c61b57690c3 to your computer and use it in GitHub Desktop.
Save sakshamsaxena/2019436719b60a27a7652c61b57690c3 to your computer and use it in GitHub Desktop.

Find all HTML Style Comment Blocks

(?s)<!--.*?-->

The second question mark makes it non-greedy, and the first (?s) is the dotall identifier to include newlines in search.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment