mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* kconv.rb: remove default -m0 and fix document.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5c691de442
commit
a59c6fe7c9
1 changed files with 35 additions and 16 deletions
|
@ -3,9 +3,17 @@
|
||||||
#
|
#
|
||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
|
# ----
|
||||||
|
#
|
||||||
|
# kconv.rb implements the Kconv class for Kanji Converter. Additionally,
|
||||||
|
# some methods in String classes are added to allow easy conversion.
|
||||||
|
#
|
||||||
|
|
||||||
require 'nkf'
|
require 'nkf'
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kanji Converter for Ruby.
|
||||||
|
#
|
||||||
module Kconv
|
module Kconv
|
||||||
#
|
#
|
||||||
# Public Constants
|
# Public Constants
|
||||||
|
@ -35,7 +43,7 @@ module Kconv
|
||||||
UTF32 = NKF::UTF32
|
UTF32 = NKF::UTF32
|
||||||
# UNKNOWN
|
# UNKNOWN
|
||||||
UNKNOWN = NKF::UNKNOWN
|
UNKNOWN = NKF::UNKNOWN
|
||||||
|
|
||||||
#
|
#
|
||||||
# Private Constants
|
# Private Constants
|
||||||
#
|
#
|
||||||
|
@ -130,10 +138,11 @@ module Kconv
|
||||||
# Convert <code>str</code> to ISO-2022-JP
|
# Convert <code>str</code> to ISO-2022-JP
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-jxm0', str).
|
# If you don't want it, use NKF.nkf('-jxm0', str).
|
||||||
def tojis(str)
|
def tojis(str)
|
||||||
::NKF::nkf('-jm0', str)
|
::NKF::nkf('-jm', str)
|
||||||
end
|
end
|
||||||
module_function :tojis
|
module_function :tojis
|
||||||
|
|
||||||
|
@ -143,7 +152,8 @@ module Kconv
|
||||||
# Convert <code>str</code> to EUC-JP
|
# Convert <code>str</code> to EUC-JP
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-exm0', str).
|
# If you don't want it, use NKF.nkf('-exm0', str).
|
||||||
def toeuc(str)
|
def toeuc(str)
|
||||||
::NKF::nkf('-em0', str)
|
::NKF::nkf('-em0', str)
|
||||||
|
@ -156,10 +166,11 @@ module Kconv
|
||||||
# Convert <code>str</code> to Shift_JIS
|
# Convert <code>str</code> to Shift_JIS
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-sxm0', str).
|
# If you don't want it, use NKF.nkf('-sxm0', str).
|
||||||
def tosjis(str)
|
def tosjis(str)
|
||||||
::NKF::nkf('-sm0', str)
|
::NKF::nkf('-sm', str)
|
||||||
end
|
end
|
||||||
module_function :tosjis
|
module_function :tosjis
|
||||||
|
|
||||||
|
@ -169,10 +180,11 @@ module Kconv
|
||||||
# Convert <code>str</code> to UTF-8
|
# Convert <code>str</code> to UTF-8
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-wxm0', str).
|
# If you don't want it, use NKF.nkf('-wxm0', str).
|
||||||
def toutf8(str)
|
def toutf8(str)
|
||||||
::NKF::nkf('-wm0', str)
|
::NKF::nkf('-wm', str)
|
||||||
end
|
end
|
||||||
module_function :toutf8
|
module_function :toutf8
|
||||||
|
|
||||||
|
@ -182,10 +194,11 @@ module Kconv
|
||||||
# Convert <code>str</code> to UTF-16
|
# Convert <code>str</code> to UTF-16
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-w16xm0', str).
|
# If you don't want it, use NKF.nkf('-w16xm0', str).
|
||||||
def toutf16(str)
|
def toutf16(str)
|
||||||
::NKF::nkf('-w16m0', str)
|
::NKF::nkf('-w16m', str)
|
||||||
end
|
end
|
||||||
module_function :toutf16
|
module_function :toutf16
|
||||||
|
|
||||||
|
@ -258,7 +271,8 @@ class String
|
||||||
# <code>out_code</code> and <code>in_code</code> are given as constants of Kconv.
|
# <code>out_code</code> and <code>in_code</code> are given as constants of Kconv.
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want to decode them, use NKF.nkf.
|
# If you don't want to decode them, use NKF.nkf.
|
||||||
def kconv(out_code, in_code=Kconv::AUTO)
|
def kconv(out_code, in_code=Kconv::AUTO)
|
||||||
Kconv::kconv(self, out_code, in_code)
|
Kconv::kconv(self, out_code, in_code)
|
||||||
|
@ -274,7 +288,8 @@ class String
|
||||||
# Convert <code>self</code> to ISO-2022-JP
|
# Convert <code>self</code> to ISO-2022-JP
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-jxm0', str).
|
# If you don't want it, use NKF.nkf('-jxm0', str).
|
||||||
def tojis; Kconv.tojis(self) end
|
def tojis; Kconv.tojis(self) end
|
||||||
|
|
||||||
|
@ -284,7 +299,8 @@ class String
|
||||||
# Convert <code>self</code> to EUC-JP
|
# Convert <code>self</code> to EUC-JP
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-exm0', str).
|
# If you don't want it, use NKF.nkf('-exm0', str).
|
||||||
def toeuc; Kconv.toeuc(self) end
|
def toeuc; Kconv.toeuc(self) end
|
||||||
|
|
||||||
|
@ -294,7 +310,8 @@ class String
|
||||||
# Convert <code>self</code> to Shift_JIS
|
# Convert <code>self</code> to Shift_JIS
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-sxm0', str).
|
# If you don't want it, use NKF.nkf('-sxm0', str).
|
||||||
def tosjis; Kconv.tosjis(self) end
|
def tosjis; Kconv.tosjis(self) end
|
||||||
|
|
||||||
|
@ -304,7 +321,8 @@ class String
|
||||||
# Convert <code>self</code> to UTF-8
|
# Convert <code>self</code> to UTF-8
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-wxm0', str).
|
# If you don't want it, use NKF.nkf('-wxm0', str).
|
||||||
def toutf8; Kconv.toutf8(self) end
|
def toutf8; Kconv.toutf8(self) end
|
||||||
|
|
||||||
|
@ -314,7 +332,8 @@ class String
|
||||||
# Convert <code>self</code> to UTF-16
|
# Convert <code>self</code> to UTF-16
|
||||||
#
|
#
|
||||||
# *Note*
|
# *Note*
|
||||||
# This method convert halfwidth katakana to fullwidth katakana.
|
# This method decode MIME encoded string and
|
||||||
|
# convert halfwidth katakana to fullwidth katakana.
|
||||||
# If you don't want it, use NKF.nkf('-w16xm0', str).
|
# If you don't want it, use NKF.nkf('-w16xm0', str).
|
||||||
def toutf16; Kconv.toutf16(self) end
|
def toutf16; Kconv.toutf16(self) end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue