Class: MechanizeContent::Util
- Inherits:
-
Object
- Object
- MechanizeContent::Util
- Defined in:
- lib/mechanize_content/util.rb
Class Method Summary collapse
Class Method Details
.force_utf8(string) ⇒ Object
5 6 7 8 |
# File 'lib/mechanize_content/util.rb', line 5 def self.force_utf8(string) ic = Iconv.new('UTF-8//IGNORE', 'UTF-8') ic.iconv(string.delete("\t").delete("\n").strip + ' ')[0..-2] end |