in reply to Unescaping HTML Escapes

Use HTML::Entities:

use HTML::Entities 'decode_entities'; decode_entities($some_text);

Cheers,
Ovid

New address of my CGI Course.

Replies are listed 'Best First'.
Re: Re: Unescaping HTML Escapes
by devmage (Initiate) on Oct 15, 2003 at 16:15 UTC
    Perfect! You rock. You have no idea how much time I spent looking for that. Unfortunately its not an easy search subject :) Devmage