RE: Regex help with search strings

2007-07-27 Thread Mark Henderson
Bobby Hartsfield wrote: > My brother's name is Justin William Eugene Mckinney III. That > might throw you for a loop. It will really throw you for a > loop when it is "Justin William Eugene Mckinney III PHD" > Or > "Dr. Justin William Eugene Mckinney III" Hi Bobby Yep, I considered this type of

RE: Regex help with search strings

2007-07-26 Thread Bobby Hartsfield
PM To: CF-Talk Subject: Regex help with search strings Hi I have a search box that currently contains only one field. I normally have one input for first name, one for lat name and so on, which makes the task of searching somewhat easier. However, in this scenario that is not the case. So,

RE: Regex help with search strings

2007-07-26 Thread Mark Henderson
> From: Ben Doom > Sent: Friday, 27 July 2007 2:17 a.m. > To: CF-Talk > Subject: Re: Regex help with search strings > > You could do this with a regex but it would be easier and > more efficient to do it with listfind() using a space as the > delimiter. Hi Ben. I wor

RE: Regex help with search strings

2007-07-26 Thread Mark Henderson
From: Mark Henderson > Sent: Thursday, 26 July 2007 10:19 a.m. > To: CF-Talk > Subject: Regex help with search strings > > Hi > > I have a search box that currently contains only one field. I > normally have one input for first name, one for lat name and > so

Re: Regex help with search strings

2007-07-26 Thread Jide Aliu
>From what you're saying, you probably might not need Regex. How about >GetToken? Am I barking up the wrong tree? ~| Check out the new features and enhancements in the latest product release - download the "What's New PDF

Regex help with search strings

2007-07-26 Thread Mark Henderson
Hi I have a search box that currently contains only one field. I normally have one input for first name, one for lat name and so on, which makes the task of searching somewhat easier. However, in this scenario that is not the case. So, what I want to do is split the search term entered into disti

Re: Regex help with search strings

2007-07-26 Thread Ben Doom
You could do this with a regex but it would be easier and more efficient to do it with listfind() using a space as the delimiter. --Ben Doom Mark Henderson wrote: > Hi > > I have a search box that currently contains only one field. I normally > have one input for first name, one for lat name a