Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Write utf-8 to file?

by borisz (Canon)
on Feb 18, 2004 at 20:04 UTC ( [id://330038]=note: print w/replies, xml ) Need Help??


in reply to Write utf-8 to file?

Tell the form that you like the data in utf-8 with the accept_charset attribute. At best deliver the page with the form already in utf-8 since some browsers send the data back in the charset they receive the data. Now save the file with open my $fh, ">:utf8", $filename or die $!; read it in with open my $fh, "<:utf8", $filename or die $!;
Boris

Replies are listed 'Best First'.
Re: Write utf-8 to file?
by einerwitzen (Sexton) on Feb 18, 2004 at 23:30 UTC
    I used
    open(PAGE, "<:utf8", "$news"); @HTML = <PAGE>; print escapeHTML(join '', @HTML); close PAGE;
    And it doesn't work, @HTML is empty. Maybe just a syntax error but i wouldnt know!
      Im sure $news is not found or you have no permissions to read the file. try
      open(PAGE, "<:utf8", "$news") or die "OPEN $news failed ($!)";
      and look into your errorlog file.
      Boris
Re: Re: Write utf-8 to file?
by einerwitzen (Sexton) on Feb 19, 2004 at 00:08 UTC
    Ok i realized that it wasn't working because it wasn't saving properly in the utf8 format.
    open(PAGE, ">:utf8", "$news"); print PAGE @cont; close(PAGE);
    isn't working right. ???
      It works fine, but only with perl 5.8. You should really check for errors. And I prefere my vars for the filehandle. It is good practice and you can yse them to.
      open (my $page, ">:utf8", $news) or die $!; print $page @xxxx; close $page;
      Boris
      I had checked for errors, but when it didn't work it didn't print errors either so i took it out to make it as simple as possible. Yet another problem then, What about for perl 5.6.1 it is what my host has installed.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://330038]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-09-11 14:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    The PerlMonks site front end has:





    Results (13 votes). Check out past polls.

    Notices?
    erzuuli‥ 🛈The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.