[thelist] Regular Expression

Raymond Camden jedimaster at macromedia.com
Thu Mar 7 10:04:01 CST 2002


> Well, you can still do it w/o regex. Assuming ASP has a ucase func:
>
> if you care about case:
> 	if(str == "cat")
>
> if you don't care about case:
> 	if(ucase(str) == "cat")
>

Ack, that would be:

	if(ucase(str) == "CAT")

-Raymond Camden, who should stick to CF. ;)





More information about the thelist mailing list