Suppose you have a string like "€foo\xA0", encoded UTF-8, Is there a way to remove invalid byte sequences from this string? ( so you get "€foo" )

In ruby-1.8 you could use Iconv.iconv('UTF-8//IGNORE', 'UTF-8', "€foo\xA0") but that is now deprecated. "€foo\xA0".encode('UTF-8') doesn't do anything, since it is already UTF-8. I tried:

"€foo\xA0".force_encoding('BINARY').encode('UTF-8', :undef => :replace, :replace => '')

which yields

"foo"

But that also loses the valid multibyte character €

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted
"€foo\xA0".chars.select{|i| i.valid_encoding?}.join
link|improve this answer
feedback
"€foo\xA0".encode('UTF-16le', :invalid => :replace, :replace => '').encode('UTF-8')
link|improve this answer
may I ask why "UTF-16le"? – lulalala Apr 23 at 3:43
I was under the impression it has a larger character set than UTF-8, meaning you don't loose any valid data. Unfortunately the following doesn't work: "€foo\xA0".encode('UTF-8', :invalid => :replace, :replace => '') because the string is already UTF-8, so it will not be encoded again. – Van der Hoorn Apr 29 at 18:09
feedback

Your Answer

 
or
required, but never shown

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