Re: Email validation doesn't work

2006-06-02 Thread Caroline Jen
The Struts has built-in e-mail validation, which can be found in the commons-validator.jar. --- Bart Busschots <[EMAIL PROTECTED]> wrote: > Hi, > > Your regular expression on the mask would seem to be > problem. I presume > you want it to match words that contain no = rather > than what you ha

Re: Email validation doesn't work

2006-06-02 Thread Bart Busschots
Hi, Your regular expression on the mask would seem to be problem. I presume you want it to match words that contain no = rather than what you have at the moment which forces ALL letters to be = which I'm sure doesn't work. The RE you need is: ^[^=]+$ HTH, Bart. marisol wrote: Can anybody

Email validation doesn't work

2006-06-02 Thread marisol
Can anybody help me with this? THANKS! Marisol. With Struts Validator Framework, the following mail is valid [EMAIL PROTECTED] I tried with the following but it doesn't work. mask ^[=]*$ Anyone knows if there's a bug place or it's me doin

Email validation doesn't work

2006-06-01 Thread marisol
With Struts Validator Framework, the following mail is valid [EMAIL PROTECTED] I tried with the following but it doesn't work. mask ^[=]*$ Anyone knows if there's a bug place or it's me doing something wrong??? THANKS! Marisol. -