in reply to HTML entity write error

Hi Nar,

..it has encoded HTML entities in the output (IE ®)...
Try using HTML::Entities.
This works for me perl -MHTML::Entities -le 'print decode_entities("&#174")'

I really don't know why you are writing into an Excel file, while what you needed is a CSV file.
Try using Text::CSV_XS
Hope this helps

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me

Replies are listed 'Best First'.
Re^2: HTML entity write error
by Nar (Novice) on Aug 23, 2013 at 03:03 UTC
    Switched to Text::CSV and works fine. Thanks guys!