How can I convert the following deprecated ruby 1.8 code into ruby 1.9 code?

invalid_chars_stripper = Iconv.new('UTF-8//IGNORE', 'UTF-8')
invalid_chars_stripper.iconv(body + ' ')[0..-2]

Thanks.

link|improve this question

74% accept rate
What does it currently do in 1.9? What do you need it to do? – Mark Thomas Feb 22 at 12:53
It do what it need to do in ruby 1.9: rip out all invalid UTF-8 characters from a string. But with deprecation warning. – Bogdan Gusiev Feb 22 at 15:07
feedback

1 Answer

This should work:

bad_str = "po#{0xFF.chr}ta#{0xFAFAFA.chr}to"        #=> "po?ta?to"
clean_str = bad_str.encode("UTF-8", {:replace=>""}) #=> "potato"
link|improve this answer
Doesn't work for me: ruby-1.9.3-p0 :033 > bad_str = "pota\xA0to" => "pota\xA0to" ruby-1.9.3-p0 :034 > puts bad_str pota�to => nil ruby-1.9.3-p0 :035 > clean_str = bad_str.encode("UTF-8", {:replace=>""}) => "pota\xA0to" – Bogdan Gusiev Mar 12 at 15:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.