Regex Cheatsheet - Regular Expression Quick Reference

Quick reference for regular expression patterns. Character classes, quantifiers, anchors, and common patterns.

Share
Back to Regex Cheatsheet

HTML Tag Pattern

Common Pattern

Match HTML tags with attributes

Pattern

<\/?\w+[^>]*>

Examples

<div class="test">

Opening tag

Matches: <div class="test">

</div>

Closing tag

Matches: </div>

Related Patterns

Related Tools

More Text Tools