I am looking for regex repalce command to replace particular strings. Suppose i want text ss to be replaced by <u>ss</u> in a HTML code.
So if my input is <p style="">ss</p> i want to see output <p style=""><u>ss</u></p>
But i don't want word like
<b>Issues</b> to get replaced like <b>I<u>ss</u>es</b>
So i need to put a check if its a complte word or apart of the word.
I want regex.replace for
">ss<" & > ss <
Any has better solution for this?
