Skip to content

Instantly share code, notes, and snippets.

@tskogberg
tskogberg / gist:3882133
Created October 12, 2012 23:03
Slå upp ord i NE (www.ne.se)
# Slå upp ord i NE
require 'nokogiri'
require 'open-uri'
query_word = URI.encode('gamäng')
# alt doc.search('.ENC').text.lines.to_a[1].strip
doc = Nokogiri::HTML(open("http://www.ne.se/sok?q=#{query_word}"))
first_hit = doc.xpath('//span[@class="ENC"]').text.lines.map(&:strip)[1]