Sounds simple, but I spent at least 6 hours with no luck.
For example, I have the following code
<div data-width="123">
<p>Hi 123</p>
<img src="123.jpg" />
</div>
and I need to transform every 123 to 999
<div data-width="999">
<p>Hi 999</p>
<img src="999.jpg" />
</div>
I've tried using several "replacing" methods, but nothing works. I just need to replace with 999 where every 123.
Thanks guys!