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

<!--- Get all genre nodes for this movie. --->
<cfset arrNodes = XmlSearch(
	xmlMovie,
	"genres/genre/"
	) />
 
<!--- Dump out the resultant nodes. --->
<cfdump
	var="#arrNodes#"
	label="XPath: genres/genre/"
	/>

For Cut-and-Paste