<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anuj Gakhar&#039;s Blog &#187; Xpath</title>
	<atom:link href="http://www.anujgakhar.com/tag/xpath/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anujgakhar.com</link>
	<description>Anuj @ Flex, ColdFusion and other RIA stuff....</description>
	<lastBuildDate>Thu, 26 Aug 2010 12:20:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Sorting XML with XSLT and ColdFusion</title>
		<link>http://www.anujgakhar.com/2010/06/28/sorting-xml-with-xslt-and-coldfusion/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sorting-xml-with-xslt-and-coldfusion</link>
		<comments>http://www.anujgakhar.com/2010/06/28/sorting-xml-with-xslt-and-coldfusion/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 13:07:00 +0000</pubDate>
		<dc:creator>Anuj Gakhar</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Xpath]]></category>

		<guid isPermaLink="false">http://www.anujgakhar.com/?p=807</guid>
		<description><![CDATA[I came across a requirement today, where I had to sort a XML file by one of the attributes in one of its child nodes. I did some searching and came across these excellent posts by Ben Nadel.  Obviously, that gave me some headstart and it was clear that XSLT was the way to go.  [...]]]></description>
		<wfw:commentRss>http://www.anujgakhar.com/2010/06/28/sorting-xml-with-xslt-and-coldfusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing NameSpaces from XML using XSLT and ColdFusion</title>
		<link>http://www.anujgakhar.com/2009/04/22/removing-namespaces-from-xml-using-xslt-and-coldfusion/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=removing-namespaces-from-xml-using-xslt-and-coldfusion</link>
		<comments>http://www.anujgakhar.com/2009/04/22/removing-namespaces-from-xml-using-xslt-and-coldfusion/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:41:42 +0000</pubDate>
		<dc:creator>Anuj Gakhar</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Xpath]]></category>

		<guid isPermaLink="false">http://www.anujgakhar.com/?p=430</guid>
		<description><![CDATA[If you are using ColdFusion XPath functions to search/parse XML strings, you will probably have come across this one at some point.  Not all, but most of the XML files have namespaces in them e.g. xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221;. If you use Xpath on a string that contains namespaces, chances are that you will get back the namespaces [...]]]></description>
		<wfw:commentRss>http://www.anujgakhar.com/2009/04/22/removing-namespaces-from-xml-using-xslt-and-coldfusion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Extracting Links using Xpath</title>
		<link>http://www.anujgakhar.com/2007/11/21/extracting-links-using-xpath/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=extracting-links-using-xpath</link>
		<comments>http://www.anujgakhar.com/2007/11/21/extracting-links-using-xpath/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 16:49:29 +0000</pubDate>
		<dc:creator>Anuj Gakhar</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Xpath]]></category>

		<guid isPermaLink="false">http://www.anujgakhar.com/2007/11/21/extracting-links-using-xpath/</guid>
		<description><![CDATA[Extracting links from a piece of HTML code is a very common task and any programmer would have come across this requirement at some point. I have always used regular expressions to achieve this and it has always worked for me, no complaints there. However, I was just curious to find some other way to [...]]]></description>
		<wfw:commentRss>http://www.anujgakhar.com/2007/11/21/extracting-links-using-xpath/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Using Xpath with Coldfusion</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=using-xpath-with-coldfusion</link>
		<comments>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 16:07:30 +0000</pubDate>
		<dc:creator>Anuj Gakhar</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Xpath]]></category>

		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/</guid>
		<description><![CDATA[I find Xpath very powerul for searching through a XML document. I have used it extensively in some of my projects and it might be worth it to post some of the examples here. For this example, I have used the books.xml sample xml file which can be found here. Following are some examples of [...]]]></description>
		<wfw:commentRss>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
