Nylon Technology Presentation: Introduction To XPath And XmlSearch() In ColdFusion

<!---
	Get the all the movie nodes that are sibling
	to this node (including itself).
--->
<cfset arrNodes = XmlSearch(
	xmlMovie,
	"../movie/"
	) />
 
<!--- Dump out the resultant nodes. --->
<cfdump
	var="#arrNodes#"
	label="XPath: ../movie/"
	/>

For Cut-and-Paste