I have simple stored search RE to replace em, en, and dash in Hx's (mostly for consistent formatting)
Find : <([Hh][1-6])>(.*?)\s*[-—–]{1,}\s*(.*?)</\1>
Replace: <\1>\2 \3</\1>
The once in awhile problem occurs when there are 2 or more em, en, or dash in the same Hx
Code:
<h1>fasfasdsadf – asdfsdfsd — sdafasdasd - asasdf - asdsadf - asdasdf</h1>
Is there are a way to have the RE do them all, or do I still have to do [Replace All] until 0 are found?