Forum Moderators: open
For example... You want to find every instance of
<p class="price">$14.95</p>
and change it too
<div class="price">$14.95</div>
But, you only want to change the tags not the content between the tags. Is there a wild card opperator you can put in to find and replace code ignoring $14.95, but still change the code on both sides?
Think if you wanted to change the tag around the price of all items in a large static ecom site, but not the prices themselves. If they were all the same you could just run a find and replace on the whole string.