pls help! regular expressions for the validator

2002-11-18 Thread richmond te
I am trying to come up with a reg exp for valid char set that we use..We allow chars, numerics, space, hyphen, slash, full stop, and asterisk as per below.. I've got: charSet ^[a-zA-Z0-9\s-./*]*$ This works OK.. however.. I need the "&" ampersand as part of the valid char set.. Documentat

Re: pls help! regular expressions for the validator

2002-11-19 Thread richmond te
chmond te Subject: pls help! regular expressions for the validator To: [EMAIL PROTECTED] I am trying to come up with a reg exp for valid char set that we use..We allow chars, numerics, space, hyphen, slash, full stop, and asterisk as per below.. I've got: charSet ^[a-zA-Z0-9\s-./*]*$