RELoop ColdFusion Custom Tag To Iterate Over Regular Expression Patterns

<!---
	Loop over the text using the email address pattern. For
	each iteration, we are just gonna use the index to output
	the individual email addresses.
--->
<cfmodule
	template="reloop.cfm"
	index="strMatch"
	pattern="#strRegEx#"
	text="#strText#">
 
	#strMatch#<br />
 
</cfmodule>

For Cut-and-Paste