Quote:
li class="normal">You must wash the part every single day.</li
li class="normal">Also you must try to....</li |
First of all, why bother with a 'normal' class name? If it's the normal
style, just make that the default style for LI
Quote:
li class="cielotitulo"><span class="normal">You must wash the part every
single day.</span></li |
Also, you might be able to get away with:
<li class="cielotitulo normal">
Which would obviously be easier to search and replace against.
Quote:
is easy using this regular expretions query
(<li class=")(normal)(">)(.+)(</li>)
but if you have the li with a line feed ON THE SOURCE CODE
li class="normal">You must wash the
part every single day.</li
it canīt read it. |
Try this:
(<li class=")(normal)(">)((.|\n)+)(</li>)
((.|\n)+) = one or more of any character or line break
-Darrel
-Darrel