Re: SPOT: Regular Expressions

2004-06-09 Thread Ben Doom
> reFind("[^[a-z]]",arguments.userid) [^a-z] You were close.  You just need to remove the extra brackets. Putting the carat outside the brackets means "beginning of string", btw. --Ben [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: SPOT: Regular Expressions

2004-06-09 Thread Jerry Johnson
This might be little more helpful... Jerry Johnson >>> [EMAIL PROTECTED] 06/09/04 03:52PM >>> >reFind("[^[a-z]]",arguments.userid) I don't think this is valid. >reFind("^[a-z]",arguments.userid) This will search for lowercase as the first letter of the string >I have also tried using ^[[:alp

Re: SPOT: Regular Expressions

2004-06-09 Thread Dain Anderson
Oops, helps if I read the question: REFind("^[a-z]", Arguments.UserID) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: SPOT: Regular Expressions

2004-06-09 Thread Dain Anderson
REFind("[A-Z]", Arguments.UserID) Ken Ketsdever wrote: > I need a regular _expression_ to find any charcter that is not a lower > case letter. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: SPOT: Regular Expressions

2004-06-09 Thread Jerry Johnson
Maybe this: reFind("[^a-z]",arguments.userid) Jerry Johnson >>> [EMAIL PROTECTED] 06/09/04 03:52PM >>> I need a regular _expression_ to find any charcter that is not a lower case letter.  This does not work. reFind("[^[a-z]]",arguments.userid) This lets anything through: reFind("^[a-z]",argum

SPOT: Regular Expressions

2004-06-09 Thread Ken Ketsdever
I need a regular _expression_ to find any charcter that is not a lower case letter.  This does not work. reFind("[^[a-z]]",arguments.userid) This lets anything through: reFind("^[a-z]",arguments.userid) I have also tried using ^[[:alpha:]] Any help would be appreciated. Ken Ketsdever We