X7ROOT File Manager
Current Path:
/opt/alt/ruby18/lib64/ruby/1.8/rexml/encodings
opt
/
alt
/
ruby18
/
lib64
/
ruby
/
1.8
/
rexml
/
encodings
/
ðŸ“
..
📄
CP-1252.rb
(4.04 KB)
📄
EUC-JP.rb
(595 B)
📄
ICONV.rb
(433 B)
📄
ISO-8859-1.rb
(134 B)
📄
ISO-8859-15.rb
(2.25 KB)
📄
SHIFT-JIS.rb
(647 B)
📄
SHIFT_JIS.rb
(36 B)
📄
UNILE.rb
(746 B)
📄
US-ASCII.rb
(654 B)
📄
UTF-16.rb
(793 B)
📄
UTF-8.rb
(268 B)
Editing: EUC-JP.rb
module REXML module Encoding begin require 'uconv' def decode_eucjp(str) Uconv::euctou8(str) end def encode_eucjp content Uconv::u8toeuc(content) end rescue LoadError require 'nkf' EUCTOU8 = '-Ewm0' U8TOEUC = '-Wem0' def decode_eucjp(str) NKF.nkf(EUCTOU8, str) end def encode_eucjp content NKF.nkf(U8TOEUC, content) end end register("EUC-JP") do |obj| class << obj alias decode decode_eucjp alias encode encode_eucjp end end end end
Upload File
Create Folder