vote up 3 vote down star
1

I'm consuming a data feed that has recently added a Unicode BOM header (U+FEFF), and my rake task is now messed up by it.

I can skip the first 3 bytes with file.gets[3..-1] but is there a more elegant way to read files in Ruby which can handle this correctly, whether a BOM is present or not?

flag

Thats a Unicode BOM not a UTF-8 one. – AnthonyWJones Feb 12 at 21:16
Thanks, I just realized that. It's actually 3 bytes, not one... I edited the question to say as much. – Andrew Vit Feb 12 at 21:45

3 Answers

vote up 5 vote down check

I wouldn't blindly skip the first three bytes; what if the producer stops adding the BOM again? What you should do is examine the first few bytes, and if they're 0xEF 0xBB 0xBF, ignore them. That's the form the BOM character (U+FEFF) takes in UTF-8; I prefer to deal with it before trying to decode the stream because BOM handling is so inconsistent from one language/tool/framework to the next.

In fact, that's how you're supposed to deal with a BOM. If a file has been served as UTF-16, you have to examine the first two bytes before you start decoding so you know whether to read it as big-endian or little-endian. Of course, the UTF-8 BOM has nothing to do with byte order, it's just there to let you know that the encoding is UTF-8, in case you didn't already know that.

link|flag
vote up -4 vote down

There's no such thing as a UTF-8 BOM. A UTF-8 file is in a predefined byte order already, adding a BOM prefix is completely pointless. Applications that produce a UTF-8-encoded file with a U+FEFF character at the beginning are wrong.

...wrong, but not, unfortunately, unusual. The best approach is to read in the bytes, convert them to characters, and remove a U+FEFF character at the front if it exists.

However, you would need to use Ruby 1.9 to do this, as previous versions of Ruby have no native Unicode support.

link|flag
2  
-1 wrong; see Ch. 2 sec. 6 of the Unicode 5.0 standard. BOM prefix in UTF8 is allowed, but is only there to mark the file as being UTF8. It isn't "recommended", but it isn't wrong, either. – Adam Jaskiewicz Apr 21 at 20:28
It's allowed, but it's purely a dud character. It does not mark the file in any canonical way; using it to detect UTF-8 is no more than a heuristic used by last-gasp guessing tools. It provides no upside and breaks compatibility with ASCII tools; it should never be used. – bobince Oct 8 at 13:21
vote up -1 vote down

If someone has posted an answer for this in PHP- how to remove the BOM, then that would be better. but anyway this is also useful.

link|flag

Your Answer

Get an OpenID
or

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