uva has asked for the wisdom of the Perl Monks concerning the following question:
UPDATE : I tried the following code again , but the same problemopen FH,"<:utf8",$filename; print <FH> ; close FH; __DATA__ the above code printing the BOM along with the text inside the file.
Can anyone explain in detail whats wrong with the code and whats happening in that code??open FH,"<:encoding(utf8)",$filename; print <FH> ; close FH; __DATA__ this code also printing the BOM along with the text inside the file.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: help needed in unicode files
by idsfa (Vicar) on Mar 28, 2006 at 15:57 UTC | |
by ambrus (Abbot) on Mar 28, 2006 at 16:59 UTC |