RE: matching regardless of case

2002-11-25 Thread Dylan Boudreau
rom: Chris Zampese [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 6:02 PM To: [EMAIL PROTECTED] Subject: matching regardless of case I have written a basic search engine, but can not find how to match the users input regardless of case. #$keyword comes from html form input whi

RE: matching regardless of case

2002-11-25 Thread Wagner, David --- Senior Programmer Analyst --- WGO
add i like /$keyword/i Wags ;) -Original Message- From: Chris Zampese [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 14:02 To: [EMAIL PROTECTED] Subject: matching regardless of case I have written a basic search engine, but can not find how to match the users input

matching regardless of case

2002-11-25 Thread Chris Zampese
I have written a basic search engine, but can not find how to match the users input regardless of case. #$keyword comes from html form input while () { if (/$keyword/) { #do some things here } } Any help is always appreciated, many thanks, Chris.