9951 explained code solutions for 126 technologies


regexMatch html tags


/<([a-z]+)[^>]*>/ctrl + c
/<

open tag at the beginning

[a-z]+

any number of any letter

[^>]*

will also include attributes if any (any text before closing tag >)