Re: ReFind - help with regex (ColdfusionMX 7)

2008-08-12 Thread cf coder
Hi Will, I sincerely apologise to you and to anyone else who got the impression that I was someone who jsut wanted a quick solution. I began working on this yesterday evening, I have spent all of today trying out different things but have not had any luck yet. This is what I've managed so far:

Re: ReFind - help with regex (ColdfusionMX 7)

2008-08-12 Thread Claude Schneegans
>>I want to loop through a directory in my codebase and return a list of href tags This could be easily handled by CF_Reextract. You can get all your hrefs in a query using simple regExps. See http://www.contentbox.com/claude/customtags/REextract/testREextract.cfm -- __

Re: ReFind - help with regex (ColdfusionMX 7)

2008-08-12 Thread Will Tomlinson
>Is someone willing to help me with my problem? I would very much appreciate >your help. > >Regards, >J I'll tell you what I do in situations like this. I read info/books about Regexs and try to solve it myself. I may work on a problem for hours without finding a solution. Then, if I can't f

Re: ReFind - help with regex (ColdfusionMX 7)

2008-08-12 Thread cf coder
Is someone willing to help me with my problem? I would very much appreciate your help. Regards, J > Hello everybody, > > I need your help with regular expressions. I want to loop through a > directory in my codebase and return a list of href tags. The href > value for ex must be in this forma

ReFind - help with regex (ColdfusionMX 7)

2008-08-12 Thread cf coder
Hello everybody, I need your help with regular expressions. I want to loop through a directory in my codebase and return a list of href tags. The href value for ex must be in this format. #request.udf.geturl(NUMERIC VALUE,STRING)# FREE Here's what I have for now: Processing #viewDir.record

Re: REFind Help ...

2004-09-01 Thread Charles Heizer
Thanks, to everyone who replied. My statement will always have a Select and FROM so I went with the which works great. Thanks again! - Charles [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: REFind Help ...

2004-09-01 Thread Adam Haskell
27;t, a statement like this will get you in trouble: > > SELECT MAILTO, MAILFROM, MAILSUBJECT, MAILMESSAGE FROM TBL_MAIL > > Pascal > > > -Original Message- > > From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] > > Sent: 01 September 2004 14:11 > > To: CF-

RE: REFind Help ...

2004-09-01 Thread S . Isaac Dealey
> 1. This will work if you always have a select statement. > If (in some > cases) there is no select statement, it will return the > whole string. > That is why I usually go with REFind/Mid. Although if he's using regex to get the column list, it's a safe bet that it will only ever be used on a se

RE: REFind Help ...

2004-09-01 Thread Pascal Peters
ROM\s.*$" If you don't, a statement like this will get you in trouble: SELECT MAILTO, MAILFROM, MAILSUBJECT, MAILMESSAGE FROM TBL_MAIL Pascal > -Original Message- > From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] > Sent: 01 September 2004 14:11 > To: CF-Talk

RE: REFind Help ...

2004-09-01 Thread Pascal Peters
For that, the query needs to be executed. In his example, theQuery is just a string (probably containing sql) Pascal > -Original Message- > From: Adam Haskell [mailto:[EMAIL PROTECTED] > Sent: 01 September 2004 14:44 > To: CF-Talk > Subject: Re: REFind Help ... > >

Re: REFind Help ...

2004-09-01 Thread Adam Haskell
#the_query.columnlist# Adam H On Wed, 1 Sep 2004 08:11:13 -0400, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > > Hello, > > I have a string and I need to get a certain part out of it > > and pipe it in to another variable. > > > Here is what I have -- > > > > > Here are all of the columns in you

Re: REFind Help ...

2004-09-01 Thread S . Isaac Dealey
> Hello, > I have a string and I need to get a certain part out of it > and pipe it in to another variable. > Here is what I have -- > > Here are all of the columns in your query #NewString# > What I get is a "1", I was really looking for the string. rereplacenocase(theQuery,"^.*?SELECT(.*?)F

RE: REFind Help ...

2004-09-01 Thread Pascal Peters
p.pos[2],stTmp.len[2]); else NewString = "no columns found !!"; I've written a UDF that does these things, but it hasn't been approved yet. Pascal > -Original Message- > From: Charles Heizer [mailto:[EMAIL PROTECTED] > Sent: 01 September 2004 08:56 > To

REFind Help ...

2004-09-01 Thread Charles Heizer
Hello, I have a string and I need to get a certain part out of it and pipe it in to another variable. Here is what I have -- Here are all of the columns in your query #NewString# What I get is a "1", I was really looking for the string. Thanks, - Charles [Todays Threads] [This Message] [S

Re: Ebay Scraping -REfind help needed.

2003-09-14 Thread Claude Schneegans
Try the REwizard to test your RegExpressions. It will even CFHTTP the page for you. See: http://www.contentbox.com/claude/customtags/tagstore.cfm?p=hf ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http

Ebay Scraping -REfind help needed.

2003-09-14 Thread Adam Reynolds
The following finds me the set of itemids after submitting a search to Ebay. >From this I create a unique list of items. I then attempt to find the name of the item: ]+>([^()]*)", cfhttp.FileContent, 1, "True")> #listidx#: #mid(cfhttp.FileContent