RE: e-mail address validator

2005-09-28 Thread Bryon Lape
Wow, even better. Thanks. > > It's a standard build in validation of the validator see > http://struts.apache.org/userGuide/dev_validator.html > > Gr, > Bram > > I'm looking for a regular expression or something I can plug into Struts > 1.2 to validate e-mail addresses off of a DynaForms. Anyone

Re: e-mail address validator

2005-09-28 Thread Francisco - São Paulo - Brazil
What is the matter with the Struts Validator? Can't you use it? It's easy. [EMAIL PROTECTED] escreveu: I'm looking for a regular expression or something I can plug into Struts 1.2 to validate e-mail addresses off of a DynaForms. Anyone have any pointers? Thanks.

RE: e-mail address validator

2005-09-28 Thread R.Vijayaraghavan
> > Never mind. I found this one on an ASP.Net page: > > [EMAIL PROTECTED],3} This wont verify the mailid: [EMAIL PROTECTED] This will. This can be made more strict by checking the length, like Bryon has done. (\\S+)(@)(\\S+)(\\.)(\\S+)((.)(\\S+))* regards, vijay. -

RE: e-mail address validator

2005-09-27 Thread Wielemaker, Bram
It's a standard build in validation of the validator see http://struts.apache.org/userGuide/dev_validator.html Gr, Bram I'm looking for a regular expression or something I can plug into Struts 1.2 to validate e-mail addresses off of a DynaForms. Anyone have any pointers? Thanks. ---

Re: e-mail address validator

2005-09-27 Thread Bryon Lape
> I'm looking for a regular expression or something I can plug into Struts > 1.2 to validate e-mail addresses off of a DynaForms. Anyone have any > pointers? > > Never mind. I found this one on an ASP.Net page: [EMAIL PROTECTED],3} it is good enough for my needs.