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,841
  • 14
  • 57
  • 111

1 Answers1

0

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

Rick James
  • 122,779
  • 10
  • 116
  • 195