So I am cycling through a list of links on a page with Nokogiri and pushing all the links onto a 2D array. The issue is that it is pushing nil in some elements which I don't want.
How do I force it to skip the elements that are nil, so my array just has links and not some links and some nil values?
See code:
url = 'http://www.craigslist.org/about/sites'
def my_list(url)
root = Nokogiri::HTML(open(url))
list = root.css("a").map do |link|
if link[:href] =~ /http/
[link.text, link[:href]]
end
end
end
Thoughts?
P.S. I tried if link[:href].nil?, but I am not sure how to tell it to skip that particular link element.