Sha256: 886637a0bd2538c10aaccb81492ca3c7f3df7710dda2d2031aaa65ff514bcd8f
Contents?: true
Size: 702 Bytes
Versions: 33
Compression:
Stored size: 702 Bytes
Contents
# XSD4R - Charset handling with iconv. # Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>. # This program is copyrighted free software by NAKAMURA, Hiroshi. You can # redistribute it and/or modify it under the same terms of Ruby's license; # either the dual license version in 2003, or any later version. require 'iconv' module XSD class IconvCharset def self.safe_iconv(to, from, str) iconv = Iconv.new(to, from) out = "" begin out << iconv.iconv(str) rescue Iconv::IllegalSequence => e out << e.success ch, str = e.failed.split(//, 2) out << '?' warn("Failed to convert #{ch}") retry end return out end end end
Version data entries
33 entries across 33 versions & 13 rubygems