Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: UTF-8 text files with Byte Order Mark

by ikegami (Patriarch)
on Feb 13, 2007 at 20:48 UTC ( [id://599778]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
            my $octets = encode("utf8", $line);
            $octets =~ s/^\x{ef}\x{bb}\x{bf}//;
            $line = decode("utf8", $octets);
    
  2. or download this
            my $BOM = decode("utf8", "\x{ef}\x{bb}\x{bf}");
            $line =~ s/^$BOM//;
    
  3. or download this
            my $BOM = chr(0xFEFF);
            $line =~ s/^$BOM//;
    
  4. or download this
            $line =~ s/^\x{FEFF}//;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-19 11:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found