0

I'd like to remove the <ul> and <li> tags without hurting the inside tags for all occurrances of this kind of structure:

<ul class="listapdf">
<li><a href="something">something</a></li>
<li><a href="something">something</a></li>
</ul>

What command can I use in MySQL command line?

MultiformeIngegno
  • 6,959
  • 15
  • 60
  • 119

1 Answers1

0

MySQL's REGEXPs can locate rows, it cannot do substitutions. Do the processing into your client code.

Rick James
  • 135,179
  • 13
  • 127
  • 222