I need to replace spaces inside a tag to other symbol. For example:
<p class="hero big" style="color: inherit; border: none">Super big hero <br />example Yeah</p>
to
<p~class="hero~big"~style="color:~inherit;~border:~none">Super big hero <br~/>example Yeah</p>
I'm new to regexp and don't know to start with. I'm able to replace spaces everywhere, but not inside a tag.
Ho to do it? Could you please provide working php code?