Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm reading data from a remote source, and occassionally get some characters in another encoding. They're not important.

I'd like to get get a "best guess" utf-8 string, and ignore the invalid data.

Main goal is to get a string I can use, and not run into errors such as:

  • Encoding::UndefinedConversionError: "\xFF" from ASCII-8BIT to UTF-8:
  • invalid byte sequence in utf-8
share|improve this question
You posted an answer and deleted it. That answer looked useful. Can you tell us why it isn't correct/helpful? – Joachim Sauer Oct 24 '11 at 6:47
1  
Undeleted and commented upon. – Jordan Feldstein Oct 24 '11 at 16:27

2 Answers

up vote 10 down vote accepted

I thought this was it:

string.encode("UTF-8", :invalid => :replace, :undef => :replace, :replace => "?")

will replace all knowns with '?'.

To ignore all unknowns, :replace => '':

string.encode("UTF-8", :invalid => :replace, :undef => :replace, :replace => "")

Edit:

I'm not sure this is reliable. I've gone into paranoid-mode, and have been using:

string.encode("UTF-8", ...).force_encoding('UTF-8')

Script seems to be running, ok now. But I'm pretty sure I'd gotten errors with this earlier.

Edit 2:

Even with this, I continue to get intermittant errors. Not every time, mind you. Just sometimes.

share|improve this answer
6  
Did you ever figure this out? I'm trying to determine if iconv can be safely replaced with String#encode in 1.9.3 (since it warns you about deprecations), but I can't tell from your comment if this is the case. – Matt Green Mar 2 '12 at 15:00
2  
Note for newbies: the ellipses in the edit refer to repeated code - the full line is: string.encode("UTF-8", :invalid => :replace, :undef => :replace, :replace => "").force_encoding('UTF-8') – Ben Feb 18 at 16:11

This works great for me:

"String".encode("UTF-8", :invalid => :replace, :undef => :replace, :replace => "").force_encoding('UTF-8')
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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