|
|
Browse by Tags
All Tags » html tags » javascript regu... » regexp javascript
-
Regex to strip everything except <h3>, <h4> and <h5> tags and the text within these tags
Platform: javascript
Input: <div><p>Some text</p><h3><a href ="#">link text here</a></h3></div>
Output: <h3>link text here</h3>
|
|
|