Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
Created·2022-06-08 11:53
Flavor·ECMAScript (JavaScript)

/
<(?<first>[^>]+)>.*?<\/(\k<first>)>
/
g
Open regex in editor

Description

This regex target each html tag with their children and their value

Submitted by Florian Caron