span8
span4
span8
span4
Is there a transformer for stripping HTML from text? I see the HTMLStripper, but it appears to replace HTML with XML. I want all HTML tags removed, including the <!DOCTYPE html>.
Thanks
I was able to strip the HTML tags with this little gem:
<[^>]*>
However, I couldn't remove the lines with only spaces or no content. I used another StringReplacer to remove the spaces, then a tester to see if the line was an "empty string". That worked.
Thanks
Could you use the StringReplacer transformer using regular expressions:
Find "<.*>" and replace with nothing.
This will replace all <anything inside> occurrences in the text.
Extracting HTML Table Question 3 Answers
Error 400 writing to AGOL, Invalid html content. 3 Answers
HTML to XML conversion 1 Answer
No access to @Value() in files passed from outside of FME 2 Answers
HTML Table & Hyperlink Parser 3 Answers
© 2019 Safe Software Inc | Legal