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

<!--- Get all of the movie tags. --->
<cfset arrMovieNodes = XmlSearch(
	xmlData,
	"movies/movie/"
	) />
 
<!--- Get the first returned movie node. --->
<cfset xmlMovie = arrMovieNodes[ 1 ] />

For Cut-and-Paste