hello, I want to remove every two or more spaces between specific tags and leave just a space instead:
For example:
<p class="text_obisnuit"> The context of articles, stories, and conversations helps you figure out and understand the meaning of English words in the text that are new to you. </p>
My desire output:
<p class="text_obisnuit">The context of articles, stories, and conversations helps you figure out and understand the meaning of English words in the text that are new to you.</p>
I tried something but it did not work
(?<=<p class="text_obisnuit">)\s*|\s*(?=</p>)