HTML Tag

Matches HTML tags

Pattern

<\/?[a-zA-Z][a-zA-Z0-9]*(?:\s[^>]*)?\/?>

Matching examples

<div><img src='x' /></p>

Non-matching examples

< div>text

Breakdown

<\/?
Opening < or </
[a-zA-Z][a-zA-Z0-9]*
Tag name
(?:\s[^>]*)?
Optional attributes
\/?>
Optional /, closing >

Related tools

Other patterns