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...
| ||||
|
feedback
|
|
I think that this is what you are looking for: | |||||
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) :
or if you have really troublesome input you can do a double conversion from UTF-8 to UTF-16 and back to UTF-8:
| |||||||||||
feedback
|
|
My current solution is to run:
This will at least get rid of the exceptions which was my main problem | |||
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 | |||||
feedback
|
|
Before you use | |||||||||||
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:
| |||
|
feedback
|
'U*'undoes'C*'? – Jordan Feldstein Oct 24 '11 at 3:05