<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0" 
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Regular Expressions (RegEx) Mailing List RSS Feed</title> 
<link>http://www.houseoffusion.com/groups/regex</link> 
<description>Regular Expressions mailing list and forums. The focus here is on the language, not on a particular implementation.</description> 
<language>en-us</language> 
<copyright>Copyright 2007, House of Fusion</copyright> 
<lastBuildDate>Tue, 02 Dec 2008 09:53:34 GMT</lastBuildDate> 
<webMaster>Michael Dinowitz (mdinowit@houseoffusion.com)</webMaster> 
<category>Mailing List</category>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>

<item>
	<title><![CDATA[convert a php regex to coldfusion regex]]></title> 
	<description><![CDATA[Brilliant, thanks Peter. One day I will &quot;click&quot; with regex!<br>
	<br>
	Cheers,<br>
	<br>
	Dave<br>
	<br>
	2008/11/26 Peter Boughton &lt;boughtonp@gmail.com&gt;:<br>
	&gt;&gt; If you have time could you explain what each part of the regex is<br>
	&gt;&gt; doing, so that I can learn for future?<br>
	&gt;<br>
	&gt; Sure<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1202"  title="Regular Expressions (RegEx): convert a php regex to coldfusion regex">more</A>]]]></description> 
	<pubDate>Wed, 26 Nov 2008 09:53:00 GMT</pubDate> 
	<dc:author>Dave Phipps</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1202</guid> 
</item>

<item>
	<title><![CDATA[convert a php regex to coldfusion regex]]></title> 
	<description><![CDATA[&gt; If you have time could you explain what each part of the regex is<br>
	&gt; doing, so that I can learn for future?<br>
	<br>
	Sure. :)<br>
	<br>
	Starting with the original PHP one:<br>
	/(\s)(\w+)$/i<br>
	<br>
	the /.../i means &quot;a regular expression, using the i flag&quot;<br>
	the i flag is &quot;<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1201"  title="Regular Expressions (RegEx): convert a php regex to coldfusion regex">more</A>]]]></description> 
	<pubDate>Wed, 26 Nov 2008 09:07:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1201</guid> 
</item>

<item>
	<title><![CDATA[convert a php regex to coldfusion regex]]></title> 
	<description><![CDATA[Many thanks Peter,<br>
	<br>
	The &quot; Sunday&quot; was appended after the regex was applied so your<br>
	solution works perfectly.<br>
	<br>
	If you have time could you explain what each part of the regex is<br>
	doing, so that I can learn for future?<br>
	<br>
	Cheers,<br>
	<br>
	Dave<br>
	<br>
	2008/11/26 <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1200"  title="Regular Expressions (RegEx): convert a php regex to coldfusion regex">more</A>]]]></description> 
	<pubDate>Wed, 26 Nov 2008 08:24:00 GMT</pubDate> 
	<dc:author>Dave Phipps</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1200</guid> 
</item>

<item>
	<title><![CDATA[convert a php regex to coldfusion regex]]></title> 
	<description><![CDATA[Sorry, brain-dead for a moment. :(<br>
	<br>
	The two expressions above are incorrect - they should be<br>
	<br>
	$wkstr = reReplaceNoCase($wkstr,'(\s)(\w+)$',' and \2')<br>
	<br>
	wkstr = reReplace( wkstr , '\w+$','and \0<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1199"  title="Regular Expressions (RegEx): convert a php regex to coldfusion regex">more</A>]]]></description> 
	<pubDate>Wed, 26 Nov 2008 07:46:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1199</guid> 
</item>

<item>
	<title><![CDATA[convert a php regex to coldfusion regex]]></title> 
	<description><![CDATA[I'm not certain that regex is doing exactly what you say it is, but<br>
	simply converting the PHP directly to CFML isas follows:<br>
	<br>
	$wkstr = reReplaceNoCase('(\s)(\w+)$',' and \2',$wkstr)<br>
	<br>
	Although the $ at the start of the variable names are not required <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1198"  title="Regular Expressions (RegEx): convert a php regex to coldfusion regex">more</A>]]]></description> 
	<pubDate>Wed, 26 Nov 2008 07:36:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1198</guid> 
</item>

<item>
	<title><![CDATA[convert a php regex to coldfusion regex]]></title> 
	<description><![CDATA[Hi,<br>
	<br>
	I am afraid that my regex skills are weak and I am in the final stage<br>
	of converting a php script to a coldfusion one. I am building a string<br>
	which can be of the form:<br>
	<br>
	Every first second third fourth Sunday at 11:15<br>
	<br>
	What the php regex does <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1197"  title="Regular Expressions (RegEx): convert a php regex to coldfusion regex">more</A>]]]></description> 
	<pubDate>Wed, 26 Nov 2008 06:15:00 GMT</pubDate> 
	<dc:author>Dave Phipps</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1197</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[well guys <br>
	this works fine thank you all<br>
	<br>
	select *<br>
	from NODE_TABLE<br>
	where '1.1.1.2.1' like id + '%' and id not like '1.1.1.2.1%'<br>
	<br>
	-----<br>
	--<br>
	Regards<br>
	<br>
	Mohammad Norouzi<br>
	<br>
	Help each other to reach the future faster<br>
	<br>
	<A HREF="http://pixelshot.wordpress.">http://pixelshot.wordpress.</A><BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1196"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Sat, 22 Nov 2008 02:12:00 GMT</pubDate> 
	<dc:author>is_maximum </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1196</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[Well<br>
	Chris Porter, has just replied me with a smart solution but I can't test it<br>
	right now until I get to work. I don't know why he can't post here.<br>
	<br>
	this is the solution:<br>
	<br>
	select *<br>
	from NODE_TABLE<br>
	where '1.1.1.2.1' like id + '%' and id not like '<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1195"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Thu, 20 Nov 2008 12:33:00 GMT</pubDate> 
	<dc:author>is_maximum </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1195</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[Well, I have a tree structure in database in which each node has its own<br>
	unique id as above, say 1.1.1.2.1 now by given a node and its position (the<br>
	same id) I have to extract all its parents and return back to the client.<br>
	the parents' ids are <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1194"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Thu, 20 Nov 2008 10:18:00 GMT</pubDate> 
	<dc:author>is_maximum </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1194</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[&gt; Thanks Adrian, No actually I am using Java Regex but I think they are alike.<br>
	&gt; I want not to use any for loop<br>
	<br>
	Why not?<br>
	<br>
	Can you provide more context as to what you're actually doing? It<br>
	might enable a better answer.<br>
	<br>
	You can do:<br>
	^\d for 1<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1193"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Wed, 19 Nov 2008 06:01:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1193</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[&gt; consider the current position I have is &quot;1.1.2.1.3&quot;<br>
	&gt; <br>
	&gt; I need to extract the following values:<br>
	&gt; <br>
	&gt; 1<br>
	&gt; 1.1<br>
	&gt; 1.1.2<br>
	&gt; 1.1.2.1<br>
	&gt; 1.1.2.1.3<br>
	<br>
	I don't think there's a way to get that with a single regex... But this<br>
	would work <br>
	<br>
	&lt;cfset a<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1192"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Wed, 19 Nov 2008 01:15:00 GMT</pubDate> 
	<dc:author>s. isaac dealey</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1192</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[Adrian Lynch wrote:<br>
	&gt; <br>
	&gt; Are you using ColdFusion?<br>
	&gt; <br>
	&gt; No need to use RegEx, it's a list so:<br>
	&gt; <br>
	&gt; &lt;cfoutput&gt;<br>
	&gt; &lt;cfloop list=&quot;#position#&quot; index=&quot;i&quot;&gt;<br>
	&gt; 	#i#&lt;br /&gt;<br>
	&gt; &lt;/cfloop&gt;<br>
	&gt; &lt;/cfoutput&gt;<br>
	&gt; <br>
	&gt; Not a complete solution for you but you can see <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1191"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Wed, 19 Nov 2008 12:13:00 GMT</pubDate> 
	<dc:author>is_maximum </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1191</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[Adrian Lynch wrote:<br>
	&gt; <br>
	&gt; Are you using ColdFusion?<br>
	&gt; <br>
	&gt; No need to use RegEx, it's a list so:<br>
	&gt; <br>
	&gt; &lt;cfoutput&gt;<br>
	&gt; &lt;cfloop list=&quot;#position#&quot; index=&quot;i&quot;&gt;<br>
	&gt; 	#i#&lt;br /&gt;<br>
	&gt; &lt;/cfloop&gt;<br>
	&gt; &lt;/cfoutput&gt;<br>
	&gt; <br>
	&gt; Not a complete solution for you but you can see <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1190"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Wed, 19 Nov 2008 12:11:00 GMT</pubDate> 
	<dc:author>is_maximum </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1190</guid> 
</item>



<item>
	<title><![CDATA[There has never been a better time to be a ColdFusion Developer]]></title> 
	<description><![CDATA[Adobe&reg; ColdFusion&reg; 8 software is a must-have release for developers to create compelling internet applications that fit in today's enterprise environment.  Now you can build rich and engaging application experiences for users that do more and look better faster than ever.

There has never been a better time to be a ColdFusion Developer.

Get the Free Trial]]></description> 
	<guid>http://ad.doubleclick.net/clk;207172701;29440100;m</guid>
	<pubDate>Tue, 02 Dec 2008 09:53:34 GMT</pubDate> 
	<dc:author>Adobe Systems</dc:author> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[Are you using ColdFusion?<br>
	<br>
	No need to use RegEx, it's a list so:<br>
	<br>
	&lt;cfoutput&gt;<br>
	&lt;cfloop list=&quot;#position#&quot; index=&quot;i&quot;&gt;<br>
		#i#&lt;br /&gt;<br>
	&lt;/cfloop&gt;<br>
	&lt;/cfoutput&gt;<br>
	<br>
	Not a complete solution for you but you can see how to get at all the list<br>
	elements.<br>
	<br>
	Adrian<br>
	<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1189"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Wed, 19 Nov 2008 08:26:00 GMT</pubDate> 
	<dc:author>Adrian Lynch</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1189</guid> 
</item>

<item>
	<title><![CDATA[[URGENT] Incremental matches!]]></title> 
	<description><![CDATA[Hello<br>
	I have a string we call it position and this is in the form of '1.2.1.1'<br>
	<br>
	consider the current position I have is &quot;1.1.2.1.3&quot;<br>
	<br>
	I need to extract the following values:<br>
	<br>
	1<br>
	1.1<br>
	1.1.2<br>
	1.1.2.1<br>
	1.1.2.1.3<br>
	<br>
	or if position is &quot;1.1.2&quot;<br>
	<br>
	I need<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1188"  title="Regular Expressions (RegEx): [URGENT] Incremental matches!">more</A>]]]></description> 
	<pubDate>Wed, 19 Nov 2008 08:21:00 GMT</pubDate> 
	<dc:author>is_maximum </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1188</guid> 
</item>

<item>
	<title><![CDATA[Search box, phrases and single words]]></title> 
	<description><![CDATA[Many thanks Peter, for both noticing the stray whitespace AND for the cfsavecontent tag... never used that one before... I agree makes it MUCH easier to read!<br>
	<br>
	Cheers,<br>
	<br>
	Matts<br>
	<br>
	&gt;Ah! I just noticed - you've got a stray whitespace at the end of your<br>
	&gt;<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1187"  title="Regular Expressions (RegEx): Search box, phrases and single words">more</A>]]]></description> 
	<pubDate>Wed, 12 Nov 2008 04:27:00 GMT</pubDate> 
	<dc:author>Developer MediaDoc </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1187</guid> 
</item>

<item>
	<title><![CDATA[Search box, phrases and single words]]></title> 
	<description><![CDATA[Ah! I just noticed - you've got a stray whitespace at the end of your<br>
	expression - my code has removed that whitespace. That's why the last one is<br>
	failing for you<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1186"  title="Regular Expressions (RegEx): Search box, phrases and single words">more</A>]]]></description> 
	<pubDate>Fri, 31 Oct 2008 02:44:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1186</guid> 
</item>

<item>
	<title><![CDATA[Search box, phrases and single words]]></title> 
	<description><![CDATA[&gt;<br>
	&gt; The SQL part we have. And I have a RegEx that works beautifully - but only<br>
	&gt; if someone enters a phrase (in quotes).<br>
	&gt;<br>
	&gt; Our code is:<br>
	&gt; &lt;cfset my_reg_ex = &quot;(?:&quot;&quot;([^&quot;&quot;]+)&quot;&quot;)|([^ ]+) &quot;&gt;<br>
	&gt; &lt;cfset my_search_terms_array = REMatch (my_reg_ex, FORM.<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1185"  title="Regular Expressions (RegEx): Search box, phrases and single words">more</A>]]]></description> 
	<pubDate>Fri, 31 Oct 2008 02:43:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1185</guid> 
</item>

<item>
	<title><![CDATA[Search box, phrases and single words]]></title> 
	<description><![CDATA[Hi All,<br>
	<br>
	We have a search box on our site. Want users to be able to type things like<br>
	<br>
	&quot;Healthy Children&quot; Canada Nutrition<br>
	<br>
	and our SQL to loop over and look for<br>
	&quot;Healthy Children&quot;<br>
	OR<br>
	Canada<br>
	OR Nutrition<br>
	<br>
	The SQL part we have. And I have a <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1184"  title="Regular Expressions (RegEx): Search box, phrases and single words">more</A>]]]></description> 
	<pubDate>Fri, 31 Oct 2008 02:32:00 GMT</pubDate> 
	<dc:author>Developer MediaDoc </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1184</guid> 
</item>

<item>
	<title><![CDATA[not in pattern -  regex method pointcut advisor]]></title> 
	<description><![CDATA[Thanks for the push everybody.&nbsp;&nbsp;I read this blog post ( <A HREF="http://cdscott.blogspot.com/2006/07/pointcuts-even-more-fun-with-regex.html">http://cdscott.blogspot.com/2006/07/pointcuts-even-more-fun-with-regex.html</A> ) and basically copied it.&nbsp;&nbsp;I understand the situation much better now especially after reading all material provided.<br>
	<br>
	<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1183"  title="Regular Expressions (RegEx): not in pattern -  regex method pointcut advisor">more</A>]]]></description> 
	<pubDate>Thu, 30 Oct 2008 05:11:00 GMT</pubDate> 
	<dc:author>D T </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1183</guid> 
</item>

<item>
	<title><![CDATA[not in pattern -  regex method pointcut advisor]]></title> 
	<description><![CDATA[&gt; The current regular expression to handle the situation is <br>
	&gt; [^discard|recycle|generate|frankGrimes]<br>
	<br>
	the characters [ and ] indicate a &quot;class&quot; in which will be found or not<br>
	found all the individual characters... so in this case, the class you've<br>
	<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1182"  title="Regular Expressions (RegEx): not in pattern -  regex method pointcut advisor">more</A>]]]></description> 
	<pubDate>Thu, 30 Oct 2008 03:25:00 GMT</pubDate> 
	<dc:author>s. isaac dealey</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1182</guid> 
</item>

<item>
	<title><![CDATA[not in pattern - regex method pointcut advisor]]></title> 
	<description><![CDATA[&gt; I'm trying to write an expression for coldspring's regex method pointcut advisor.&nbsp;&nbsp;I'm trying to write a regular expression that is a white list of methods that I do not want intercepted.<br>
	<br>
	Can you supply a bit of context to what ColdSpring's method <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1181"  title="Regular Expressions (RegEx): not in pattern - regex method pointcut advisor">more</A>]]]></description> 
	<pubDate>Thu, 30 Oct 2008 03:00:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1181</guid> 
</item>

<item>
	<title><![CDATA[not in pattern -  regex method pointcut advisor]]></title> 
	<description><![CDATA[Not a regex but works:<br>
	<br>
	&lt;cfset method = &quot;recycle&quot;&gt;<br>
	&lt;cfset method = &quot;badMethod&quot;&gt;<br>
	&lt;cfset allowedMethods = &quot;discard,recycle,generate,frankGrimes&quot;&gt;<br>
	<br>
	&lt;cfif ListFindNoCase(allowedMethods, method)&gt;<br>
		&lt;cfoutput&gt;#method# can come in...&lt;/cfoutput&gt;<br>
	&lt;cfelse<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1180"  title="Regular Expressions (RegEx): not in pattern -  regex method pointcut advisor">more</A>]]]></description> 
	<pubDate>Thu, 30 Oct 2008 02:36:00 GMT</pubDate> 
	<dc:author>Adrian Lynch</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1180</guid> 
</item>

<item>
	<title><![CDATA[not in pattern -  regex method pointcut advisor]]></title> 
	<description><![CDATA[Hello,<br>
	<br>
	Please help me.<br>
	<br>
	I'm trying to write an expression for coldspring's regex method pointcut advisor.&nbsp;&nbsp;I'm trying to write a regular expression that is a white list of methods that I do not want intercepted.<br>
	<br>
	So I don't want any discard|recycle<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1179"  title="Regular Expressions (RegEx): not in pattern -  regex method pointcut advisor">more</A>]]]></description> 
	<pubDate>Thu, 30 Oct 2008 02:29:00 GMT</pubDate> 
	<dc:author>D T </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1179</guid> 
</item>

<item>
	<title><![CDATA[Find text NOT in an anchor tag ]]></title> 
	<description><![CDATA[&gt;I would like to search a piece of text for any instance of a word or <br>
	&gt;phrase, unless it is inside a set of anchor tags.<br>
	&gt;<br>
	&gt;I.E.&nbsp;&nbsp;Search for 'Foobar' and find it in 'This is a Foobar example, but <br>
	&gt;I do not want to find this &lt;a href=&quot;foobarLink.cfm&quot;&gt;<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1178"  title="Regular Expressions (RegEx): Find text NOT in an anchor tag.">more</A>]]]></description> 
	<pubDate>Thu, 09 Oct 2008 11:35:00 GMT</pubDate> 
	<dc:author>Media Dog </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1178</guid> 
</item>

<item>
	<title><![CDATA[Capitalize first letter of all words ]]></title> 
	<description><![CDATA[On Thu, Oct 2, 2008 at 18:15, Ian Skinner &lt;HOF@ilsweb.com&gt; wrote:<br>
	&gt; The trick being that this has to work on a ColdFusion 4.5 server, so the<br>
	&gt; /u switch is apparently out!<br>
	<br>
	Does it work if you put the slash the right way round? (it's \u not /u)<br>
	<br>
	Can<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1177"  title="Regular Expressions (RegEx): Capitalize first letter of all words.">more</A>]]]></description> 
	<pubDate>Thu, 02 Oct 2008 01:40:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1177</guid> 
</item>

<item>
	<title><![CDATA[Capitalize first letter of all words ]]></title> 
	<description><![CDATA[If you don't mind a loop solution:<br>
	<br>
	<A HREF="http://cflib.org/index.cfm?event=page.udfbyid&amp;udfid=889">http://cflib.org/index.cfm?event=page.udfbyid&amp;udfid=889</A><br>
	<br>
	Adrian<br>
	<br>
	-----Original Message-----<br>
	From: Ian Skinner [mailto:HOF@ilsweb.com]<br>
	Sent: 02 October 2008 18:15<br>
	To: regex<br>
	Subject: Capitalize first letter of <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1176"  title="Regular Expressions (RegEx): Capitalize first letter of all words.">more</A>]]]></description> 
	<pubDate>Thu, 02 Oct 2008 01:38:00 GMT</pubDate> 
	<dc:author>Adrian Lynch</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1176</guid> 
</item>

<item>
	<title><![CDATA[Capitalize first letter of all words ]]></title> 
	<description><![CDATA[The trick being that this has to work on a ColdFusion 4.5 server, so the <br>
	/u switch is apparently out!<br>
	<br>
	I have reReplace(myString,'(^.| .)','-\1-','ALL') working so that it <br>
	captures the first character of all the words.&nbsp;&nbsp;Now I need to find away <br>
	to <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1175"  title="Regular Expressions (RegEx): Capitalize first letter of all words.">more</A>]]]></description> 
	<pubDate>Thu, 02 Oct 2008 01:20:00 GMT</pubDate> 
	<dc:author>Ian Skinner </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1175</guid> 
</item>

<item>
	<title><![CDATA[Find a table cell containing an image tag ]]></title> 
	<description><![CDATA[&gt; they are irrelevant and unavailable to this conversion exercise.&nbsp;&nbsp;I<br>
	&gt; could make them compliant and ignore them.&nbsp;&nbsp;But since this is more a<br>
	&gt; learning exercise then anything...<br>
	<br>
	Fair enough on both counts. :)<br>
	<br>
	&gt; The main features I do not grok <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1174"  title="Regular Expressions (RegEx): Find a table cell containing an image tag.">more</A>]]]></description> 
	<pubDate>Thu, 28 Aug 2008 04:10:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1174</guid> 
</item>

<item>
	<title><![CDATA[Find a table cell containing an image tag ]]></title> 
	<description><![CDATA[Peter Boughton wrote:<br>
	&gt; Just replace &lt;img([^&gt;]*[^/])&gt; with &lt;img\1/&gt; and not worry about the tables?<br>
	&gt;&nbsp;&nbsp;&nbsp;<br>
	The main reason is that the fix I'm using is to remove the images, since <br>
	they are irrelevant and unavailable to this conversion exercise.&nbsp;&nbsp;I <br>
	<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1173"  title="Regular Expressions (RegEx): Find a table cell containing an image tag.">more</A>]]]></description> 
	<pubDate>Thu, 28 Aug 2008 03:28:00 GMT</pubDate> 
	<dc:author>Ian Skinner </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1173</guid> 
</item>

<item>
	<title><![CDATA[Find a table cell containing an image tag ]]></title> 
	<description><![CDATA[&gt; the reason I'm looking for these &lt;img...&gt;<br>
	&gt; tags, is because they are not XHTML compliant and I needed to fix that<br>
	&gt; so that I could get this HTML fragment into an acceptable XML mode.<br>
	<br>
	So, why are you worrying about the tables if it's the image <BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1172"  title="Regular Expressions (RegEx): Find a table cell containing an image tag.">more</A>]]]></description> 
	<pubDate>Thu, 28 Aug 2008 10:01:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1172</guid> 
</item>

<item>
	<title><![CDATA[Find a table cell containing an image tag ]]></title> 
	<description><![CDATA[Peter Boughton wrote:<br>
	&gt; Can you elaborate on the context of what you're trying to do here?<br>
	&gt;<br>
	&gt; Because stuff like this is generally much much simpler with either<br>
	&gt; XPath or jQuery.<br>
	Yeah, XPath would be nice but the reason I'm looking for these &lt;img<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1171"  title="Regular Expressions (RegEx): Find a table cell containing an image tag.">more</A>]]]></description> 
	<pubDate>Thu, 28 Aug 2008 09:31:00 GMT</pubDate> 
	<dc:author>Ian Skinner </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1171</guid> 
</item>

<item>
	<title><![CDATA[Find a table cell containing an image tag ]]></title> 
	<description><![CDATA[&gt; This is probably one of those look ahead|behind things that I still do<br>
	&gt; not grasp about regex.<br>
	&gt;<br>
	&gt; I want to find &lt;td...&gt; tags in a string of HTML that contain an &lt;img...&gt;<br>
	&gt; tag.&nbsp;&nbsp;&nbsp;But I need the entire &lt;td..&gt;...&lt;img...&gt;...&lt;/td&gt; string to replace<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1170"  title="Regular Expressions (RegEx): Find a table cell containing an image tag.">more</A>]]]></description> 
	<pubDate>Wed, 27 Aug 2008 06:47:00 GMT</pubDate> 
	<dc:author>Peter Boughton</dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1170</guid> 
</item>

<item>
	<title><![CDATA[Find a table cell containing an image tag ]]></title> 
	<description><![CDATA[This is probably one of those look ahead|behind things that I still do <br>
	not grasp about regex.<br>
	<br>
	I want to find &lt;td...&gt; tags in a string of HTML that contain an &lt;img...&gt; <br>
	tag.&nbsp;&nbsp;&nbsp;But I need the entire &lt;td..&gt;...&lt;img...&gt;...&lt;/td&gt; string to replace <br>
	it.&nbsp;&nbsp;<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1169"  title="Regular Expressions (RegEx): Find a table cell containing an image tag.">more</A>]]]></description> 
	<pubDate>Wed, 27 Aug 2008 05:25:00 GMT</pubDate> 
	<dc:author>Ian Skinner </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1169</guid> 
</item>

<item>
	<title><![CDATA[ISAPI Converting URL value ]]></title> 
	<description><![CDATA[HI abigail, i'm not sure, but i think you have this backwards. isapi_rewrite takes the incoming url &amp; converts it to a physical url _before_ iis/cf/php etc gets ahold of it. my guess is that you really want to convert:<br>
	<A HREF="http://127.0.0.1/imp/www/889">http://127.0.0.1/imp/www/889</A><br>
	<br>
	(<BR> [<A href="http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1168"  title="Regular Expressions (RegEx): ISAPI Converting URL value.">more</A>]]]></description> 
	<pubDate>Tue, 05 Aug 2008 04:34:00 GMT</pubDate> 
	<dc:author>Abigail Coker </dc:author> 
	<guid>http://www.houseoffusion.com/groups/regex/message.cfm/messageid:1168</guid> 
</item>

<item>
	<title><![CDATA[The Fusion Authority Quarterly Update Volume 2, Issue 4 is out now]]></title> 
	<description><![CDATA[If you want your ColdFusion skills to be up-to-date then you need the Fusion Authority Quarterly Update. The current issue is all about Best Practices and Development Environments. Just what we all need.
	
	Order now]]></description> 
	<guid>https://secure.houseoffusion.com/vol2issue4.cfm</guid>
	<pubDate>Tue, 02 Dec 2008 09:53:34 GMT</pubDate> 
	<dc:author>Fusion Authority</dc:author> 
</item>


</channel>
</rss>

