Ok, here’s my problem. I have an Excel file with about 150000 rows, and each cell contains text with some html tags mixed in for good measure. I’m trying to remove the html tags and leave behind just plain text. I was given this code snippet:
use HTML::Parse;
use HTML::FormatText;
$plain_text = HTML::FormatText->new->format(parse_html($html_text));
but never having used perl, I really don’t understand it and could do with some advice.
Thanks for any help.
help with perl....
Moderator: SG Admins