diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-16 04:31:49 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-16 04:31:49 +0000 |
commit | d8416318460c9d88f9f5c6724f0703dd06d3d6a9 (patch) | |
tree | d5d84d1b68b5f689fb4070cef2f907264ab12b4e /README.tw | |
parent | 82686b017bb20f55e16f84c47f7ac0bf8d0c714b (diff) | |
download | perl-d8416318460c9d88f9f5c6724f0703dd06d3d6a9.tar.gz |
Add CJK READMEs from Autrijus Tang, Dan Kogai, and
Jungshik Shin. Regen toc.
p4raw-id: //depot/perl@15944
Diffstat (limited to 'README.tw')
-rw-r--r-- | README.tw | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/README.tw b/README.tw new file mode 100644 index 0000000000..02c0d4e22b --- /dev/null +++ b/README.tw @@ -0,0 +1,145 @@ +If you read this file _as_is_, just ignore the funny characters you +see. It is written in the POD format (see perlpod manpage) which is +specially designed to be readable as is. + +The following documentation is written in Big5 encoding. + +如果你用一般的文字編輯器閱覽這份文件, 請忽略文中奇特的註記字符. 這份文 +件是以 POD (簡明文件格式) 寫成; 這種格式是為了能讓人直接讀取而特別設計 +的. 關於此格式的進一步資訊, 請參考 perlpod 線上文件. + +=head1 NAME + +perltw - 正體中文 Perl 指南 + +=head1 DESCRIPTION + +歡迎來到 Perl 的天地! + +從 5.8.0 版開始, Perl 具備了詳盡的 Unicode (萬國碼) 支援, 也連帶支援了 +許多拉丁語系以外的編碼方式; CJK (中日韓) 便是其中的一部份. Unicode 是 +國際性的標準, 試圖涵蓋世界上所有的字符: 西方世界, 東方世界, 以及兩者間 +的一切 (希臘文, 敘利亞文, 阿拉伯文, 希伯來文, 印度文, 印地安文, 等等). +它也容納了多種作業系統與平臺 (如 PC 及麥金塔). + +Perl 本身以 Unicode 進行操作. 這表示 Perl 內部的字串資料可用 Unicode +表示, Perl 的函式與算符 (例如正規表示式比對) 也能對 Unicode 進行操作. +在輸入及輸出時, 為了處理以 Unicode 之前的編碼方式儲存的資料, Perl 提供 +了「Encode」這個模組, 可以讓你輕易地讀取及寫入舊有的編碼資料. + +Encode 延伸模組支援下列正體中文的編碼方式: + + big5 最初的 Big5 編碼 + big5-hkscs Big5 + 香港外字集 + cp950 字碼頁 950 (Big5 + 微軟添加的字符) + +舉例來說, 將 Big5 編碼的檔案轉成 Unicode, 祗需鍵入下列指令: + + perl -Mencoding=big5,STDOUT,utf8 -pe1 < file.big5 > file.utf8 + +Perl 也內附了「piconv」, 一支完全以 Perl 寫成的字符轉換工具程式, 用法 +如下: + + piconv -f big5 -t utf8 < file.big5 > file.utf8 + piconv -f utf8 -t big5 < file.utf8 > file.big5 + +另外, 利用 encoding 模組, 你可以輕易寫出以字符為單位的程式碼, 如下所示: + + #!/usr/bin/env perl + # 啟動 big5 字串解析; 標準輸出入及標準錯誤都設為 big5 編碼 + use encoding 'big5', STDIN => 'big5', + STDOUT => 'big5', STDERR => 'big5'; + + print length("駱駝"); # 2 (雙引號表示字符) + print length('駱駝'); # 4 (單引號表示位元組) + print index("諄諄教誨", "彖帢"); # -1 (不包含此子字串) + print index('諄諄教誨', '彖帢'); # 1 (從第二個字節開始) + +=head2 額外的中文編碼 + +如果需要更多的中文編碼, 可以從 CPAN (L<http://www.cpan.org/>) 下載 +Encode::HanExtra 模組. 它目前提供下列編碼方式: + + euc-tw Unix 延伸字符集, 包含 CNS11643 平面 1-7 + big5plus 中文數位化技術推廣基金會的 Big5+ + +另外, Encode::HanConvert 模組則提供了簡繁轉換用的兩種編碼: + + big5-simp Big5 正體中文與 Unicode 簡體中文互轉 + gbk-trad GBK 簡體中文與 Unicode 繁體中文互轉 + +若想在 GBK 與 Big5 之間互轉, 請參考該模組內附的 b2g.pl 與 g2b.pl 兩 +支程式. + +=head2 進一步的資訊 + +請參考 Perl 內附的大量說明文件 (不幸全是用英文寫的) , 來學習更多關於 +Perl 的知識, 以及 Unicode 的使用方式. 不過, 外部的資源相當豐富: + +=head2 提供 Perl 資源的網址 + +=over 4 + +=item L<http://www.perl.com/> + +Perl 的首頁 (由歐萊禮公司維護) + +=item L<http://www.cpan.org/> + +Perl 綜合典藏網 (Comprehensive Perl Archive Network) + +=item L<http://lists.perl.org/> + +Perl 郵遞論壇一覽 + +=back + +=head2 學習 Perl 的網址 + +=over 4 + +=item L<http://www.oreilly.com.tw/chinese/perl/index.html> + +正體中文版的歐萊禮 Perl 書藉 + +=item L<http://groups.google.com/groups?q=tw.bbs.comp.lang.perl> + +臺灣 Perl 連線討論區 (也就是各大 BBS 的 Perl 連線版) + +=back + +=head2 Perl 使用者集會 + +=over 4 + +=item L<http://www.pm.org/groups/asia.shtml#Taiwan> + +臺灣 Perl 推廣組一覽 + +=item L<http://irc.elixus.org/> + +藝立協線上聊天室 + +=back + +=head2 Unicode 相關網址 + +=over 4 + +=item L<http://www.unicode.org/> + +Unicode 學術學會 (Unicode 標準的制定者) + +=item L<http://www.cl.cam.ac.uk/%7Emgk25/unicode.html> + +Unix/Linux 上的 UTF-8 及 Unicode 答客問 + +=back + +=head1 AUTHORS + +Jarkko Hietaniemi E<lt>jhi@iki.fiE<gt> + +唐宗漢 E<lt>autrijus@autrijus.orgE<gt> + +=cut |