I'm writing a crawler in Ruby (1.9) that consumes lots of HTML from a lot of random sites.
When trying to extract links, I decided to just use .scan(/href="(.*?)"/i) instead of nokogiri/hpricot (major speedup). The problem is that I now receive a lot of "invalid byte sequence in UTF-8" errors.
From what I understood, the net/http library doesn't have any encoding specific options and the stuff that comes in is basically not properly tagged.
What would be the best way to actually work with that incoming data? I tried .encode with the replace and invalid options set, but no success so far...

link|improve this question

71% accept rate
something that might break characters, but keeps the string valid for other libraries: valid_string = untrusted_string.unpack(‘C*’).pack(‘U*’) – Marc Seeger Aug 6 '11 at 7:17
Having the exact issue, tried the same other solutions. No love. Tried Marc's, but it seems to garble everything. Are you sure 'U*' undoes 'C*'? – Jordan Feldstein Oct 24 '11 at 3:05
feedback

6 Answers

up vote 7 down vote accepted

I think that this is what you are looking for:

fixing-invalid-utf-8-in-ruby-revisited

link|improve this answer
This solution is to use iconv which is not compatible with ruby 1.9(.2?) – Jordan Feldstein Oct 24 '11 at 3:02
It worked for me for ruby 1.9.2 - maybe different patch version... I did not check it for a while. – Rubinsh Oct 25 '11 at 22:00
feedback

In Ruby 1.9.3 is possible to use String.encode to "ignore" the invalid UTF-8 sequences. Here is a snippet that will work both in 1.8 (iconv) and 1.9 (String#encode) :

require 'iconv' unless String.method_defined?(:encode)
if String.method_defined?(:encode)
  file_contents.encode!('UTF-8', 'UTF-8', :invalid => :replace)
else
  ic = Iconv.new('UTF-8', 'UTF-8//IGNORE')
  file_contents = ic.iconv(file_contents)
end

or if you have really troublesome input you can do a double conversion from UTF-8 to UTF-16 and back to UTF-8:

require 'iconv' unless String.method_defined?(:encode)
if String.method_defined?(:encode)
  file_contents.encode!('UTF-16', 'UTF-8', :invalid => :replace, :replace => '')
  file_contents.encode!('UTF-8', 'UTF-16')
else
  ic = Iconv.new('UTF-8', 'UTF-8//IGNORE')
  file_contents = ic.iconv(file_contents)
end
link|improve this answer
I've compared with my solution and found, that mine loses some letters, at least ё: "Alena V.\". While your solution keeps it: "Ale\u0308na V.\". Nice. – Nakilon Jan 16 at 1:20
With some problematic input I also use a double conversion from UTF-8 to UTF-16 and then back to UTF-8 file_contents.encode!('UTF-16', 'UTF-8', :invalid => :replace, :replace => '') file_contents.encode!('UTF-8', 'UTF-16') – ecerulm Jan 16 at 9:28
There is also the option of force_encoding. If you have a read a ISO8859-1 as an UTF-8 (and thus that string contains invalid UTF-8) then you can "reinterpret" it as ISO8859-1 with the_string.force_encoding("ISO8859-1") and just work with that string in its real encoding. – ecerulm Feb 20 at 14:36
That double encode trick just saved my Bacon! I wonder why it is required though? – johnf Mar 12 at 2:32
I'm using this on my mysql database of Apple's affiliate feed for app store data. The double encode works! But the formatting on the app descriptions is messed up now :/ – nnyby May 5 at 0:03
feedback

My current solution is to run:

my_string.unpack("C*").pack("U*")

This will at least get rid of the exceptions which was my main problem

link|improve this answer
I'm using this method in combination with valid_encoding? which seems to detect when something is wrong. val.unpack('C*').pack('U*') if !val.valid_encoding?. – Aaron Gibralter Jan 19 at 16:41
feedback

I recommend you to use a HTML parser. Just find the fastest one.

Parsing HTML is not as easy as it may seem.

Browsers parse invalid UTF-8 sequences, in UTF-8 HTML documents, just putting the "�" symbol. So once the invalid UTF-8 sequence in the HTML gets parsed the resulting text is a valid string.

Even inside attribute values you have to decode HTML entities like amp

Here is a great question that sums up why you can not reliably parse HTML with a regular expression: http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags

link|improve this answer
1  
I'd love to keep the regexp since it's about 10 times faster and I really don't want to parse the html correctly but just want to extract links. I should be able to replace the invalid parts in ruby by just doing: ok_string = bad_string.encode("UTF-8", {:invalid => :replace, :undef => :replace}) but that doesn't seem to work :( – Marc Seeger Jun 6 '10 at 11:02
feedback

Before you use scan, make sure that the requested page's Content-Type header is text/html, since there can be links to things like images which are not encoded in UTF-8. The page could also be non-html if you picked up a href in something like a <link> element. How to check this varies on what HTTP library you are using. Then, make sure the result is only ascii with String#ascii_only? (not UTF-8 because HTML is only supposed to be using ascii, entities can be used otherwise). If both of those tests pass, it is safe to use scan.

link|improve this answer
thanks, but that's not my problem :) I only extract the host part of the URL anyway and hit only the front page. My problem is that my input apparently isn't UTF-8 and the 1.9 encoding foo goes haywire – Marc Seeger Jun 6 '10 at 0:57
@Marc Seeger: What do you mean by "my input"? Stdin, the URL, or the page body? – Adrian Jun 6 '10 at 1:14
HTML can be encoded in UTF-8: en.wikipedia.org/wiki/Character_encodings_in_HTML – Eduardo Jun 6 '10 at 1:39
my input = the page body @Eduardo: I know. My problem is that the data coming from net/http seems to have a bad encoding from time to time – Marc Seeger Jun 6 '10 at 11:00
It's not uncommon for webpages to actually have bad encoding for real. The response header might say it's one encoding but then actually serving another encoding. – sunkencity Jan 12 at 6:46
feedback

I've encountered string, which had mixings of English, Russian and some other alphabets, which caused exception. I need only Russian and English, and this currently works for me:

ec1 = Encoding::Converter.new "UTF-8","Windows-1251",:invalid=>:replace,:undef=>:replace,:replace=>""
ec2 = Encoding::Converter.new "Windows-1251","UTF-8",:invalid=>:replace,:undef=>:replace,:replace=>""
t = ec2.convert ec1.convert t
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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