我想在JavaScript中創建一個正則表達式。我想要做的:Javascript的正則表達式:替換字符串中的實例
- 我想看看是否有一個html元素
class=「get-me」
字符串中的任何地方。 - 如果有我想用
I found you
替換它。
實例:
<div class="get-me" />
結果:I found you
<div>Some text <div class="get-me" data-type="data-type" js="js" /> more things happening here</div>
<div>Some text <p class="get-me" /> more things</div>
I m testing <<<<div class="get-me" />
結果:<div>Some text I found you more things happening here</div>
結果:<div>Some text I found you more things</div>
結果:I m testing <<<I found you
謝謝。
[不解析與正則表達式HTML](https://stackoverflow.com/a/1732454/3001761) – jonrsharpe
爲什麼你認爲我想解析HTML?我有一個不解析的特定用例。 – zsid
在html標籤中查找一個類是_parsing_。爲此,您可以使用[sizzlejs](// sizzlejs.com)等庫,而不是使用正則表達式。也沒有JavaScript的後代,但[有替代品](https://stackoverflow.com/q/7376238/6320039) –