| Short description: |
Ruby Interface for NKF 1.92. |
| Category: |
Library/Kanji Code Converter |
| Status: |
stable |
| Created: |
2003-02-21 10:38:25 GMT |
| Last update: |
2003-02-21 10:38:23 GMT |
| Owner: |
Shirai,Kaoru
(Projects of this owner) |
| Homepage: |
http://devel.korinkan.co.jp/ruby.html |
| Download: |
http://devel.korinkan.co.jp/nkf192-ruby-0.1.0.tar.gz
|
| License: |
BSD-type |
| Dependency: |
|
| Description: |
Ruby Interface for NKF 1.92.
Usage is same as Ruby/NKF library except for loading 'nkf192' instead of 'nkf',
and using module 'NKF192' instead of 'NKF'.
NKF192 also provides constants for nkf-1.92's long option.
* NKF192::L_base64
* NKF192::L_euc
* NKF192::L_euc_input
* NKF192::L_fj
* NKF192::L_help
* NKF192::L_jis
* NKF192::L_jis_input
* NKF192::L_mac
* NKF192::L_mime
* NKF192::L_mime_input
* NKF192::L_msdos
* NKF192::L_sjis
* NKF192::L_sjis_input
* NKF192::L_unix
* NKF192::L_version
* NKF192::L_windows
Example
===============
require "nkf192"
print NKF192.nkf(NKF192::L_unix, $stdin.read)
|