1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rexml/encodings/EUC-JP.rb (Encoding): use join.

* lib/rexml/encodings/Shift-JIS.rb (Encoding): use join, and
  typo fixed.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2003-07-10 02:30:08 +00:00
parent 95b7ffce0f
commit 570befe608
2 changed files with 4 additions and 4 deletions

View file

@ -18,11 +18,11 @@ rescue LoadError
module REXML
module Encoding
def from_euc_jp(str)
return Iconv::iconv("utf-8", "euc-jp", str)[0]
return Iconv::iconv("utf-8", "euc-jp", str).join
end
def to_euc_jp content
return Iconv::iconv("euc-jp", "utf-8", content)[0]
return Iconv::iconv("euc-jp", "utf-8", content).join
end
end
end

View file

@ -18,11 +18,11 @@ rescue LoadError
module REXML
module Encoding
def from_shift_jis(str)
return Iconv::iconv("utf-8", "shift-jis", str)[0]
return Iconv::iconv("utf-8", "shift-jis", str).join
end
def to_shift_jis content
return Iconv::iconv("euc-jp", "shift-jis", content)[0]
return Iconv::iconv("shift-jis", "utf-8", content).join
end
end
end