Skip to content

Instantly share code, notes, and snippets.

@Mithrandir0x
Last active December 27, 2022 11:27
Show Gist options
  • Select an option

  • Save Mithrandir0x/4465421 to your computer and use it in GitHub Desktop.

Select an option

Save Mithrandir0x/4465421 to your computer and use it in GitHub Desktop.
"Find HTML open tags" Regular Expression
// Found at http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454
//
// But beware, HTML cannot be regexed... The end is nigh.
var re = /<([a-z]+) *[^/]*?>/g;
@hodeware
Copy link

Is not passing on this:

<Hello title="test" / >

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