I have a simple piece of HTML code.
<tr>
OtherElement
</tr>
<tr>
HelloWorld
</tr>
I need to match the <tr></tr>
element containing HelloWorld.
I am using this regular expression but it matches first element as well.
<tr[\s\S]*?HelloWorld[\s\S]*?<\/tr>
I am using Node.js so I can not use look behind.