Can anyone help me one with this one... I was trying to do this with regex expressions and it doesn't seem to be working correctly..
I have a column that is basically several sentences with line breaks in between them. I need to go through this data and remove any span style lines as well as remove any sentence that contains a certain word (CERT). The things being removed could be anywhere in here. I think regex could be used for the span lines with an expression like ^(.*)<span(.*)>(.*) and a replacement with $1 $3 but i'm not sure how to do something similar with the CERT replacement?
Thank you.
Example:
<span style=""color: #00b050;"">Reserves:
(paragraph)
CERT: do not agree
(another paragraph)
CERT: do not agree
(another paragraph)
Would come out looking like:
Reserves:
(paragraph)
(another paragraph)
(another paragraph)