Ask Ben: Selecting All Text Nodes Of An XML Document

Posted August 13, 2007 at 7:50 PM

Tags: ColdFusion, Ask Ben

I like all your xpath stuff you have been doing in ColdFusion. Can you help get the text values of my xml document?

In my presentation on introductory XPath in ColdFusion, I neglected to cover selecting text nodes, but rest assured, this is a fairly easy process. Rather than selecting the node name or the attribute name, all you need to do is select the "text()" value. To explore this, let's first create an XML document:

 Launch code in new window » Download code as text file »

  • <!--- Build ColdFusion XML object. --->
  • <cfxml variable="xmlImages">
  • <cfoutput>
  •  
  • <images>
  • <image>
  • <url>http://celebslam.buzznet.com/wp-content/uploads/2007/08/carmen-electra-tiny-bikini-14.jpg</url>
  • <desc>Carmen Electra taking off her shirt, revealing a skimpy bikini.</desc>
  • </image>
  • <image>
  • <url>http://celebslam.buzznet.com/wp-content/uploads/2007/08/carmen-electra-tiny-bikini-21.jpg</url>
  • <desc>Carmen Electra walking around in bikini on the beach.</desc>
  • </image>
  • <image>
  • <url>http://celebslam.buzznet.com/wp-content/uploads/2007/08/carmen-electra-tiny-bikini-17.jpg</url>
  • <desc>Carmen Electra playing chicken in a bikini with some other girls in bikinis.</desc>
  • </image>
  • </images>
  •  
  • </cfoutput>
  • </cfxml>

Now, we have a valid XML document object in our ColdFusion variable, xmlImages. We can use XmlSearch() to select all of our text nodes:

 Launch code in new window » Download code as text file »

  • <!---
  • Select all the text nodes using the text()
  • path construct.
  • --->
  • <cfset arrNodes = XmlSearch(
  • xmlImages,
  • "//text()"
  • ) />
  •  
  • <!--- Dump out matching text nodes. --->
  • <cfdump
  • var="#arrNodes#"
  • label="Text Nodes: //Text()"
  • />

Running the above code, the "//" XPath construct means "anywhere in the XML document." Therefore, this will select all text nodes, giving us the following CFDump output:


 
 
 

 
ColdFusion XPath To Select All Text Nodes In XML Document  
 
 
 

As you can see, we are getting a whole lot of text nodes, not necessarily just the ones we expected - the URL and DESC nodes. Every XML node contains a text node even if it also has nested element (tag) nodes. Therefore, we are getting text nodes for the IMAGES element node as well as for each of the IMAGE nodes.

Now, maybe this is what you want to do, but I am guessing it is not. For the benefit of learning, I am going to assume that we only want to get the text nodes for the URL and DESC element nodes. For that, all we need to do is modify the XPath to narrow down the possible nodes. At first, I was tempted to try and just get any text node that has a length:

 Launch code in new window » Download code as text file »

  • <!--- Select all the text nodes that have a length. --->
  • <cfset arrNodes = XmlSearch(
  • xmlImages,
  • "//*[ text() != '' ]/text()"
  • ) />

This might look intuitive, but it actually ends up returning all the text nodes in the document. The problem is that our original XML document has a lot of white space. This white space gives the TEXT value of every element node some length. Therefore, we cannot select text nodes based purely on length (had we had no intertag white space, I believe that this would have worked).

To get more accurate results, we need to start narrowing down our path a little more effectively. One method for this would be to select the text of any element node based purely on the node name:

 Launch code in new window » Download code as text file »

  • <!---
  • Select all the text nodes that are direct
  • descendant of element nodes that have the
  • name url or desc.
  • --->
  • <cfset arrNodes = XmlSearch(
  • xmlImages,
  • "//*[ name() = 'url' or name() = 'desc' ]/text()"
  • ) />
  •  
  • <!--- Dump out matching text nodes. --->
  • <cfdump
  • var="#arrNodes#"
  • label="Get Text Of Nodes URL or DESC"
  • />

Here, we are using an XPath predicate that requires our parent node's names to be either "url" or "desc". Then, once we have those nodes, we are selecting the text(). This gives us the following CFDump output:


 
 
 

 
ColdFusion XPath To Select All Text Nodes Of Specific Nodes (By Name)  
 
 
 

If we don't necessarily know the names of the nodes we want (although I am not sure what that would happen), we can also use a non-direct descendant relationship. In this next example, we are going to select the text nodes of all distant descendants of the image element nodes:

 Launch code in new window » Download code as text file »

  • <!---
  • Select all the text nodes that are descendants
  • of an image node.
  • --->
  • <cfset arrNodes = XmlSearch(
  • xmlImages,
  • "/images/image/*/text()"
  • ) />
  •  
  •  
  • <!--- Dump out matching text nodes. --->
  • <cfdump
  • var="#arrNodes#"
  • label="Get Text Of Nodes IMAGE descendants"
  • />

This gives us the following CFDump output:


 
 
 

 
ColdFusion XPath To Select Text Nodes As Descendants Of Images  
 
 
 

I wish that ColdFusion's XmlSearch() supported a bit more of the XPath functions, but I hope that this helps point you in the right direction.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Tim
Aug 24, 2007 at 5:28 PM // reply »
10 Comments

What would be your take on this:

If you have an XML Doc
<employees>
<employee>
<empid>123</empid>
</employee>
<employee>
<empid>456</empid>
</employee>
</employees>

I want a list of empid values. I can use XMLSearch to get an array of empids, and loop over it to listappend the values, but I dont want to have to loop over the nodes. I really wanted to use StructFindKey(myxml,"empid","all") but that function cant be run against xml objects.

Know of a low-intensive way to get a list of empids?


Aug 24, 2007 at 5:56 PM // reply »
6,516 Comments

@Tim,

Not sure if there is an ColdFusion supported XPath way to do this. My guess is that you are gonna need a UDF to do this. I will write one for you :)


Aug 25, 2007 at 2:10 PM // reply »
6,516 Comments

@Tim,

I got a little CFC together that I will post on Monday AM that you might find very useful.


Aug 27, 2007 at 7:12 AM // reply »
6,516 Comments

@Tim,

Take a look at this: http://www.bennadel.com/index.cfm?dax=blog:925.view


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 22, 2009 at 4:30 AM
jQuery Live() Method And Event Bubbling
dasegtezr ... read »
Nov 22, 2009 at 4:03 AM
jQuery Live() Method And Event Bubbling
C_fieri ... read »
Nov 22, 2009 at 1:56 AM
Learning ColdFusion 9: Using CFQuery In CFScript Can Enable SQL Injection Attacks
Why adobe would give you script equivalent of cfquery is beyond me. I love cfquery tag because it helps me wriite clean sql, and get away from the horrible jdbc queries If I wanted to write javali ... read »
Nov 22, 2009 at 1:45 AM
Streaming Text Using ColdFusion's CFContent Tag And The Variable Attribute
The reason you would want to do this is to stream. Ack json/xml files to ria clients I used thus technique before because putting json in response stream causes debugging info to come thru As well a ... read »
Nov 21, 2009 at 6:47 PM
Hal Helms - Real World Object Oriented Development, Sarasota - Day Five
@charlie griefer, Thank you.. ... read »
Nov 21, 2009 at 5:15 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jose Galdamez, Oh heh yeah I didn't paste the whole code. I should have defined the vars -- my bad. It's fixed thou. Thanks. ... read »
Nov 21, 2009 at 4:49 PM
Styling The ColdFusion 8 WriteToBrowser CFImage Output
Great work yet again Ben! Whilst I didn't use this whole code, I copied some of your regex code for a similar problem with the lack of an alt attribute and unescaped ampersands in CFIMAGE for Railo 3 ... read »
Nov 21, 2009 at 1:13 PM
My First ColdFusion Builder Extension - Encrypting And Decrypting CFM / CFC Files
@Ben, Because I am pedantic, I just want to make sure that everyone knows there is absolutely no encryption going on. There is only encoding and obfuscation. The cfencode tool only obfuscates your C ... read »