Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Joined Parameter help please 1

Status
Not open for further replies.

butkus

MIS
Sep 4, 2001
114
0
0
US
I would like to present my users with a name search parameter seeking their input as follows:
LNAME,FNAME

I would then like to parse their input and compair it to two different fields in the DB (LNAME and FNAME)

I've got an idea of how to start but don't know how to grab everything before and after the comman seperating the users input. Something like this I think;


if {db.lname}={?name}[1 to #before,] and
{db.fname}={?name}[#after, to last#] then true

I'm writing in CR8.5 dev edition, and pulling from an OLD FoxPro DB.

Any help would be great, thanks in advance.

James
 
Try:

trim(split({?name},",")[1]) = {db.lname} and
trim(split({?name},",")[2]) = {db.fname}

The problem might be ensuring that users enter a comma after the last name.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top