to_a( xpath=nil )
Instance Public methods
Returns an Array of Element children. An XPath may be supplied to filter the children. Only Element children are returned, even if the supplied XPath matches non-Element children.
1 2 3 4 | doc = Document. new '<a>sean<b/>elliott<c/></a>' doc.root.elements.to_a #-> [ <b/>, <c/> ] doc.root.elements.to_a( "child::node()" ) #-> [ <b/>, <c/> ] XPath.match(doc.root, "child::node()" ) #-> [ sean, <b/>, elliott, <c/> ] |
Please login to continue.