Ask Ben: Using Regular Expressions To Parse Data In ColdFusion

Posted February 15, 2009 at 4:33 PM

Tags: ColdFusion, Ask Ben

I really like how you used Javascript's String Replace method last week to parse data with regular expressions. This seems like a really powerful tool. Is there any way to do the same thing in ColdFusion?

In Javascript, functionality like this is made possible, in part, because in Javascript, you can define anonymous, inline functions to be executed for each pattern match in the String replace method. In ColdFusion, you cannot define inline methods in this manner. You can, however, use things like RELoop, my ColdFusion custom tag for looping over regular expression patterns, to accomplish a similar functionality.

Since it's been a while since I've mentioned my RELoop tag, I'll give you a quick summary. RELoop is a ColdFusion custom tag that loops over regular expression pattern matches in a target string and makes each subsequent pattern match available for a given iteration of the loop. The match can be returned as a simple string or as a collection of captured groups. These can be treated individually or modified and stored back into the target string resulting in a new text value.

Here is a summary of the tag attributes:

Index

This is the CALLER-scoped variable into which we will store the contextual match. This may be a string or a struct depending on whether the user wants the Groups returned (as defined by the ReturnGroups attribute below).

Text

This is the target text in which we will be searching for and iterating over the regular expression pattern matches.

Pattern

This is the regular expression pattern that we will be matching. Since we are using the Java regular expression engine, this goes by the java.util.regex.Pattern syntax, not necessarily by the ColdFusion regex syntax (there are slight differences in the way these two engines operate - the Java regular expression engine is faster, more powerful, and more robust).

Variable

This is the optional, CALLER-scoped variable into which the resulting string will be placed. This uses the Pattern Matcher's AppendReplacement() and AppendTail() methods to build up a new text value. It replaces the current match with whatever you have stored in the Index variable at the end of each pattern match iteration. Note: If no Variable attribute is defined, the internal algorithm does not waste time creating a new string value.

ReturnGroups

This flags whether to return the single matched pattern or to return a structure with the set of captured groups. If a structure is returned, it stores the entire match in the "0" key. It then stores each captured group in the group-based index key. Additionally, it returns the number of captured groups in the GroupCount key.

Ok, now that we are up to speed on my RELoop ColdFusion custom tag, let's duplicate last week's Javascript demo in ColdFusion:

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

  • <!--- Store our test data. --->
  • <cfset strData = "[event=action][id=longuuid][a=b][c=D]" />
  •  
  • <!--- Create our data collection of name-value pairs. --->
  • <cfset objData = {} />
  •  
  •  
  • <!---
  • Using our regular expression loop ColdFustion custom tag,
  • loop over the matches, grapping the captured groups on each
  • pattern iteration.
  • --->
  • <cf_reloop
  • index="objMatch"
  • text="#strData#"
  • pattern="\[(\w+)=([^\]]*)\]"
  • returngroups="true">
  •  
  • <!---
  • Store the name-value pair into our collection using
  • the first (name) and second (value) captured groups from
  • the pattern.
  • --->
  • <cfset objData[ objMatch[ 1 ] ] = objMatch[ 2 ] />
  •  
  • </cf_reloop>
  •  
  •  
  • <!--- Output our name-value collection. --->
  • <cfdump
  • var="#objData#"
  • label="Name-Value Collection"
  • />

Just as in the Javascript version of this algorithm, I am looping over each regular expression pattern match. Then, for each match, I am simply storing the name-value pair, as defined by our two matched groups, into our data collection. When we run the above code and output the final data struct, we get:

 
 
 
 
 
 
RELoop Data Structure Created By Storing Captured Groups. 
 
 
 

As you can see, the data string was successfully parsed into a collection of name-value entries using regular expression groups and my RELoop ColdFusion custom tag.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page




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

Reader Comments

Feb 15, 2009 at 4:47 PM // reply »
8 Comments

That's Exactly what I was looking for, thanks Ben!
Sick tag too, first time I've seen it


Feb 15, 2009 at 5:01 PM // reply »
7,481 Comments

@Don,

Awesome man, glad you like it. I love regular expressions and looping over the pattern matches is definitely something that needs to be more built into the ColdFusion feature set. I have used this tag a bunch of times and really really like its functionality.


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 11, 2010 at 9:14 AM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
Just need to add - we still did have to get the external service to clean up their WSDL and flatten it as per the article I posted before ... read »
Mar 11, 2010 at 9:00 AM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
I finally got to the bottom of my problem - the fact was that the WSDL was full of complex types that Axis didn't like - I should have been able to receive it as a struct but that just didn't work so ... read »
Mar 11, 2010 at 8:55 AM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
@Dmitry, No problem my man. You should be able to just parse the SOAP response into XML and be able to access all the nodes that way. The only thing you have to be careful of is the namespaces whic ... read »
Mar 11, 2010 at 8:49 AM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
cfhttp response is located in it's FileContent property ???? You can't imagine how many times I had to work with cfinvoke and it's complex responses and their weird classes deserialization because I ... read »
Mar 11, 2010 at 8:43 AM
Ask Ben: Building An AJAX, jQuery, And ColdFusion Powered Application
@Nathan, Not saying this is the correct way to do this, but I've handled this in many different ways depending on how "secure" the function needs to be. In a case like yours (users needs to be l ... read »
Mar 11, 2010 at 7:57 AM
FLEX On jQuery: Turning HTML Links Into Standard UI Elements
@Peter, Yeah, that's how I build to - we have AJAX and jQuery where is enhances a given page... but we don't require it to tie the entire application together (it's still very much a request-respon ... read »
Mar 11, 2010 at 5:38 AM
Delaying ColdFusion Session Persistence Until User Logs In
Hmmm, I didn't get any email notification here - I definitely selected all the checkboxes (they're still ticked). ... read »
Mar 11, 2010 at 5:05 AM
Ask Ben: Selecting XML Attributes Given Other XML Attributes
Seems like I'm missing something. If I take this code and put it in a .cfm file and try to run it I get this error: Detail Premature end of file. ErrNumber 0 ExceptionMessage Premature end of f ... read »