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...
|
|
||||
|
I think that this is what you are looking for: fixing-invalid-utf-8-in-ruby-revisited Please note - this answer is only relevant for ruby 1.9.2. In ruby 1.9.3 and up Iconv is deprecated. |
|||||||||
|
|
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) :
or if you have really troublesome input you can do a double conversion from UTF-8 to UTF-16 and back to UTF-8:
|
|||||||||||||||
|
|
My current solution is to run:
This will at least get rid of the exceptions which was my main problem |
|||
|
|
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 |
|||||
|
|
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:
|
|||
|
|
|
Before you use |
|||||||||||
|
|
While Nakilon's solution works, at least as far as getting past the error, in my case, I had this weird f-ed up character originating from Microsoft Excel converted to CSV that was registering in ruby as a (get this) cyrillic K which in ruby was a bolded K. To fix this I used 'iso-8859-1' viz. |
|||
|
Hpricot - UTF-8 issues
|
|||||
|
|
This seems to work:
|
|||
|
|
'U*'undoes'C*'? – Jordan Feldstein Oct 24 '11 at 3:05