Skip to content

Instantly share code, notes, and snippets.

@Kr4u7
Last active October 22, 2019 09:17
Show Gist options
  • Save Kr4u7/a476af9e39e3a77f6ff382ac6950ae39 to your computer and use it in GitHub Desktop.
Save Kr4u7/a476af9e39e3a77f6ff382ac6950ae39 to your computer and use it in GitHub Desktop.

Regex shit

VSCODE Shortcuts

- ctrl + shift + L:     mark all occurences
- ctrl + D:             mark next occurence

Find duplicates

- ^(.*)(\n\1)+$:        find duplicate line
- ^(.*)(\n\1):          find duplicate line inline

Find XML tags

- <tag>[\S\s\n]*?<\/tag>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment