method
encode_unile
v1_8_6_287 -
Show latest stable
- Class:
REXML::Encoding
encode_unile(content)public
No documentation available.
# File lib/rexml/encodings/UNILE.rb, line 3
def encode_unile content
array_utf8 = content.unpack("U*")
array_enc = []
array_utf8.each do |num|
if ((num>>16) > 0)
array_enc << ??
array_enc << 0
else
array_enc << (num & 0xFF)
array_enc << (num >> 8)
end
end
array_enc.pack('C*')
end