Chandler
不是我愛寫,是因為腦袋的RAM不夠大,不寫下來馬上就忘了....
2011年7月29日 星期五
Perl 處理 unicode txt file
open $FH_o, ">", "ansi.txt";
open $FH_i, "<:encoding(UTF-16)", "unicode.txt";
while (<$FH_i>) {
@item = split(/\s+/);
print $FH_o "$item[1]\n";
}
close $FH_i;
close $FH_o;
參考
http://www.issociate.de/board/post/325821/Unicode,_ANSI,_and_regular_expressions_in_Perl_5.8.html
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言