RE: Scriptlet Params in form

2004-07-01 Thread RDoss
how about this " > -Ram -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, July 01, 2004 1:26 PM To: [EMAIL PROTECTED] Subject: Scriptlet Params in form Hey everyone, I'm trying to send a parameter with the form submission. What I've been trying is:

RE: Validation Mask help please

2004-06-24 Thread RDoss
to end -Ram -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 24, 2004 2:39 PM To: [EMAIL PROTECTED] Subject: RE: Validation Mask help please What is the $ for? I know the ^ is to start at the beginning. -Original Message- From: [EMAIL PR

RE: Validation Mask help please

2004-06-24 Thread RDoss
http://www.weitz.de/regex-coach/ might be useful -Ram -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 24, 2004 2:34 PM To: [EMAIL PROTECTED] Subject: RE: Validation Mask help please try something like [a-zA-Z][0-9]{4}-\d{3} -Ram -Origina

RE: Validation Mask help please

2004-06-24 Thread RDoss
try something like [a-zA-Z][0-9]{4}-\d{3} -Ram -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 24, 2004 2:06 PM To: [EMAIL PROTECTED] Subject: Validation Mask help please I have the following field validation: mask ^[A-Za-z]\d{4}-\d{3

RE: [OT]Help needed in wring regular expression

2004-06-16 Thread RDoss
Chris: thank you for your help. yes, I need to accept any leading zeros but it should be followed by any non-zero integer in that case. ([1-9][0-9]{0,3})|([Ff][Ee][Ww])|([Mm][Aa][Nn][Yy]) is working fine but could not enter any leading zeros. thank

RE: [OT]Help needed in wring regular expression

2004-06-15 Thread RDoss
Initially we had to use (\d{1,4})|(FEW)|(few)|(MANY)|(many) and eventually we found that it is accepting 0(zero) when we enter a integer value as 0(zero) or which is invalid. anybody have any idea about how to achieve the above using regular expression. I tried finding any document to refer

RE: [OT]Help needed in wring regular expression

2004-06-15 Thread RDoss
Navjot: that way it is working fine by not accepting 0(zero)as a first value but also it is not acceptiong any non-zero integer like 1,11, also it accepts value more than 4 digits. Any clue where I'm doing wrong or any suggestion? appreciate if you can let us know any document link contains

[OT]Help needed in wring regular expression

2004-06-14 Thread RDoss
Hi, Web page contains a text box can accept only maximum of four digits and it can be integers/String(accepts only "many","MANY") if enter a single integer value it should not be 0(zero) and 0(zero) can be entered subsequently after first non-zero integer and totally 4 digit maximum. I tried usin

Help needed in wring regular expression

2004-06-14 Thread RDoss
Hi, Web page contains a text box can accept only maximum of four digits and it can be integers/String(accepts only "many","MANY") if enter a single integer value it should not be 0(zero) and 0(zero) can be entered subsequently after first non-zero integer and totally 4 digit maximum. I tried usin