J
John
Hi
Imagine that I have the following statement in a Perl program.
my $word = '??';
If I save the Perl program as 'UTF8' the characters remain.
If I save it in ASCII, the line appears as my $word = '????‘?';
Now, the problem is although I can save it as UTF8 the Perl program needs to
be in ASCII to be run
How do I get around this problem?
Regards
John
Imagine that I have the following statement in a Perl program.
my $word = '??';
If I save the Perl program as 'UTF8' the characters remain.
If I save it in ASCII, the line appears as my $word = '????‘?';
Now, the problem is although I can save it as UTF8 the Perl program needs to
be in ASCII to be run
How do I get around this problem?
Regards
John