Created
October 8, 2010 21:07
-
-
Save devth/617546 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
# retrive unique values of category in an XML document | |
# doc is an Nokogiri::XML::Document | |
# (http://nokogiri.org/Nokogiri/XML/Document.html) | |
@doc.css('category').to_a.map { |c| c.content }.uniq | |
# css('category') # get all <category> nodes | |
# to_a # convert to an array | |
# map # invoke block on each element to pull | |
# the xml node's content out | |
# uniq # remove duplicate categories |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment