I just upgraded from Ruby 1.8 to 1.9, and most of my text processing scripts now fail with the error invalid byte sequence in UTF-8. I need to either strip out the invalid characters or specify that Ruby should use ASCII encoding instead (or whatever encoding the C stdio functions write, which is how the files were produced) -- how would I go about doing either of those things?

Preferably the latter, because (as near as I can tell) there's nothing wrong with the files on disk -- if there are weird, invalid characters they don't appear in my editor...

link|improve this question

25% accept rate
is it possible to change the title of the question? Since the answer is not for the question anymore. Cheers~ – lulalala Jan 3 at 9:34
1  
Ah, good call. Done. – Doches Jan 10 at 13:18
feedback

1 Answer

up vote 1 down vote accepted

What's your locale set to in the shell? In Linux-based systems you can check this by running the locale command and change it by e.g.

$ export LANG=en_US

My guess is that you are using locale settings which have UTF-8 encoding and this is causing Ruby to assume that the text files were created according to utf-8 encoding rules. You can see this by trying

$ LANG=en_GB ruby -e 'warn "foo".encoding.name'
US-ASCII
$ LANG=en_GB.UTF-8 ruby -e 'warn "foo".encoding.name'
UTF-8

For a more general treatment of how string encoding has changed in Ruby 1.9 I thoroughly recommend http://blog.grayproductions.net/articles/ruby_19s_string

(code examples assume bash or similar shell - C-shell derivatives are different)

link|improve this answer
1  
Excellent. I guess this is my karmic punishment for slinging strings around in C without caring about the encoding, or for being a native English speaker. – Doches Sep 10 '10 at 11:23
@Doches: So, you're the guy who writes all those apps that won't let me use my actual name. BTW: admitting you have a problem is the first ... bla bla bla :-) – Jörg W Mittag Sep 10 '10 at 17:44
feedback

Your Answer

 
or
required, but never shown

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