RE: Extracting Data into an Array

2006-10-10 Thread Andy Matthews
You've almost got it. http://www.cfquickdocs.com/?getDoc=REFindNoCase If you add one final argument to REFind, that function will return an array for you: REFind(a [[:space:]*[:punct:]*[:alnum:]*], qLinkReview.TextBlock, true) If returnsubexpressions = True: a structure that contains two

RE: Extracting Data into an Array

2006-10-10 Thread Ben Nadel
I wrote some Java Regular Expression get functions for this very purpose: Case Insensitive: http://www.bennadel.com/snippets/11-JREGetNoCase-strText-strRegExp-.htm Case Sesnsitive: http://www.bennadel.com/snippets/5-JREGet-strContent-strRegExp-.htm Keep in mind that these are JAVA regular

Re: Extracting Data into an Array

2006-10-10 Thread Claude Schneegans
Currently I am using REFind See CF_REextract, it can make this kind of task much easier: http://www.contentbox.com/claude/customtags/REextract/testREextract.cfm http://www.contentbox.com/claude/customtags/REextract/testREextract.cfm?p= Cick on the Test button, it does about exactly what you