in reply to Re^2: Escaping double quotes in complete document
in thread Escaping double quotes in complete document

Hello again MeinName,

Apologies I did not notice that.

The only alternative way that I found is to force your whole script to use UTF-8 by default. For example:

$ PERL_UNICODE=S perl script.pl

You can read further on perlrun/Command Switches.

Give it a try.

Hope this helps.

Seeking for Perl wisdom...on the process of learning...not there...yet!

Replies are listed 'Best First'.
Re^4: Escaping double quotes in complete document
by MeinName (Novice) on Jun 27, 2017 at 06:36 UTC

    Hi thanos,

    I tried

    #!/usr/bin/perl -wCSD

    to run my scripts, but unfortunately that only solves the UTF-8 character problems and not my problem with the HTML entities.

    Thank you for your help, though :)