method
next_element
v1_8_7_330 -
Show latest stable
- Class:
REXML::Element
next_element()public
Returns the next sibling that is an element, or nil if there is no Element sibling after this one
doc = Document.new '<a><b/>text<c/></a>' doc.root.elements['b'].next_element #-> <c/> doc.root.elements['c'].next_element #-> nil