This is driving me crazy. I'm basically trying to check if saved_category_parent matches parsed_category_parent
it says saved_category_parent belongs to class Array, while parsed_category_parent (scraped with nokogiri) says its a string.
So when I try to check the following it always returns false because its comparing first with ["first"]
I just need to remove the stupid brackets. i tried to_s and it actually makes it worse... it adds more parenthesis and more brackets.
if saved_category_parent == parsed_category_parent && saved_category == parsed_category
//code
end
heres my other code
categories = ["#first > sub-cat", "#second > sub-cat-2"]
# Parse through saved categories and break them up
categories.each do |category|
saved_category_parent = category.scan(/#([^ ]*)/)[0]
saved_category = category.scan(/.* > (.*)$/)[0]
@rss = Nokogiri::HTML(open(open(link.get_attribute('href'))))
@rss.css('.col').each do |forumblock|
parsed_category_parent = forumblock.css('h4 a').inner_text
forumblock.css('li a').each do |forumlink|
parsed_category = forumlink.content
# p saved_category_parent
# p parsed_category_parent
# p saved_category
# p parsed_category
p saved_category_parent
p saved_category
end
end
end