I've got a table with blob text fields. This blob has a lot of html in it. One of the pieces of html is an h2. I would like to find all instances of a word in the h2 tag, and replace it with another word (while leaving other words the same).
For example, I would like to replace the h2 "wiggles" with "bumbles" in the following:
Before:
<h2>This is some wiggles html!</h2>
<p>And here is some more wiggles html that could be ignored</p>
<h2>And this is a decoy h2</h2>
After:
<h2>This is some bumbles html!</h2>
<p>And here is some more wiggles html that could be ignored</p>
<h2>And this is a decoy h2</h2>
A pitfall I'm concerned about is the regex not stopping at the end of the first h2, and rather continuing through to the last closing of it.
I have access to shell and phpmyadmin.