|
|
Browse by Tags
All Tags » html tags » javascript regular expressions
-
Hi,
I've got a javascript/regex scenario I was hoping to find a solution to.
Here’s the situation
We have been given the string "The quick brown fox jumped over the lazy sleeping dog."
We want to replace it with "The large yellow tiger jumped over the lazy sleeping cat".
Normally this would ...
-
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>
-
Hi,
I was looking for a regex which would strip all HTML and included text except what is included in <h3>,<h4> and <h5> tags.
I am planning to use this regex in javascript.
example:
Input:
<ul>
<li><h4>Sub Menu</h4>
...
|
|
|