RE: Find character not in a list (reverse of FindOneOf).

2000-10-29 Thread Steve Martin
: Michael Gagnon [mailto:[EMAIL PROTECTED]] > Sent: Sunday, October 29, 2000 13:30 > To: CF-Talk > Cc: [EMAIL PROTECTED] > Subject: Re: Find character not in a list (reverse of FindOneOf). > > > This is great! > > How would I add the dash, dot and underscore to

Re: Find character not in a list (reverse of FindOneOf).

2000-10-29 Thread Michael Gagnon
October 27, 2000 3:42 PM Subject: RE: Find character not in a list (reverse of FindOneOf). > I'm guessing from your example code that you need to use REFind[NoCase](). > An RE is much more efficient in terms of programming time, readability, and > execution efficiency than a se

RE: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Steve Bernard
Message- From: Steve Martin [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 1:00 PM To: CF-Talk Subject: RE: Find character not in a list (reverse of FindOneOf). It's gonna be a little more extensive than that. The scenario is that we have a variable which contains n characte

RE: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread David Gassner
> To: CF-Talk > Subject: RE: Find character not in a list (reverse of FindOneOf). > > > It's gonna be a little more extensive than that. The scenario is that we > have a variable which contains n characters and a list which contains m > elements. We need a function which re

RE: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Steve Martin
: Re: Find character not in a list (reverse of FindOneOf). > > > erlistfind() function I mean. > > -d > > > > > Deanna Schneider > Interactive Media Developer > UWEX Cooperative Extension Electronic Pu

Re: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Deanna L. Schneider
erlistfind() function I mean. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI 53706 (608) 265-7923 --

Re: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Deanna L. Schneider
Just do a listgetat() function. If it returns zero, it wasn't in the list. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI 53706

Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Michael Gagnon
Hi! Is there a way to ask ColdFusion to look in a variable for any character that is NOT in a list? The oposit of "FindOneOf". (If one of the characters in form.username is not in this list, do this...) Thanks! -