Skip to content

Instantly share code, notes, and snippets.

@bikrone
Last active August 29, 2015 14:24
Show Gist options
  • Save bikrone/1790ecea16118838b195 to your computer and use it in GitHub Desktop.
Save bikrone/1790ecea16118838b195 to your computer and use it in GitHub Desktop.
Regex
Html tag Regex
// with attribute
<(\/?\w+)((?:\s+[\w:-]+\s*=?\s*([\"\']?).*?\3)*\s*)\/?>
// without attribute
<(\/?\w+)(?:\s+[\w:-]+\s*=?\s*([\"\']?).*?\2)*\s*\/?>
<\/?(\w+)((\s+[\w:-]+(\s*=\s*(?:".*?"|'.*?'|[^'">\s]+))?)+\s*|\s*)\/?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment