开发者

Detect encoding

I'm getting some string data from the web, and I suspect that it's not always what it says it is. I don't know where the problem is, and I just don't care any more. From day one on this project I've been fighting Ruby string e开发者_如何学Cncoding. I really want some way to say: "Here's a string. What is it?", and then use that data to get it to UTF-8 so that it doesn't explode gsub() 2,000 lines down in the depths of my app. I've checked out rchardet, but even though it supposedly works for 1.9 now, it just blows up given any input with multiple bytes... which is not helpful.


You can't really detect the encoding. You can only assume it.

For the most Western languages applications, the following construct will work. The traditional encoding usually is "ISO-8859-1". The new and preferred encoding is UTF-8. Why not simply try to encode it with UTF-8 and fallback with the old encoding

def detect_encoding( str )
  begin
    str.encode("UTF-8")
    "UTF-8"
  rescue
    "ISO-8859-1"
  end
end


It is impossible to tell from a string what encoding it is in. You always need some additional metadata that tells you what the string's encoding is.

If you get the string from the web, that metadata is in the HTTP headers. If the HTTP headers are wrong, there is absolutely nothing that you or Ruby or anyone else can do. You need to file a bug with the webmaster of the site where you got the string from and wait till he fixes it. If you have a Service Level Agreement with the website, file a bug, wait a week, then sue them.


Old question, but chardet works on 1.9: http://rubygems.org/gems/chardet


why not try use https://github.com/brianmario/charlock_holmes to get the exact encoding. Then also use it to convert to UTF8

    require 'charlock_holmes'
    class EncodeParser
      def initialize(text)
        @text = text
      end

      def detected_encoding
        CharlockHolmes::EncodingDetector.detect(@text)[:encoding]
      end

      def convert_to_utf8
        CharlockHolmes::Converter.convert(@text, detected_encoding, "UTF-8")
      end
    end

then just use EncodeParser.new(text).detected_encoding or EncodeParser.new(text). convert_to_utf8


We had some fine experience with ensure_encoding. It actually does the job for us to convert resource files having unknown encoding to UTF-8.

The README will give you some hints which options would be a good fit for your situation.

I have never tried chardet since ensure_encoding did the job just fine for us.

I covered here how we use ensure_encoding.


Try setting these in your environment.

export LC_ALL=en_US.UTF-8
export LC_CTYPE=en_US.UTF-8

Try ruby -EBINARY or ruby -EASCII-8BIT to command line

Try adding -Ku or -Kn to your ruby command line.

Could you paste the error message ?

Also try this: http://github.com/candlerb/string19/blob/master/string19.rb


Might try reading this: http://yehudakatz.com/2010/05/05/ruby-1-9-encodings-a-primer-and-the-solution-for-rails/


I know it's an old question, but in modern versions of Ruby it's as simple as str.encoding. You get a return value something like this: #Encoding:UTF-8

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜