RE: regex validation problem

2008-01-03 Thread nalikas1
Thanks, I was finally able to figure it out... ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,15}$ > Date: Wed, 2 Jan 2008 21:06:10 -0800> From: [EMAIL PROTECTED]> To: > user@struts.apache.org> Subject: Re: regex validation problem> > > hi,> > > seems like ur missing val

Re: regex validation problem

2008-01-02 Thread ravi_eze
and [0-9]... but when I enter those characters, it says >> that I need to enter all three character groups: [a-z], [A-Z], [0-9].> >> To: user@struts.apache.org> From: [EMAIL PROTECTED]> Subject: Re: regex >> validation problem> Date: Tue, 1 Jan 2008 18:38:55 -0500> &

Re: regex validation problem

2008-01-02 Thread Laurie Harper
racters (or only uppercase characters or only numbers), the check works correctly by saying I need to enter [A-Z] and [0-9]... but when I enter those characters, it says that I need to enter all three character groups: [a-z], [A-Z], [0-9].> To: user@struts.apache.org> From: [EMAIL PROTECTED]&g

RE: regex validation problem

2008-01-02 Thread supa charoenchit
by saying I need to enter [A-Z] and [0-9]... but when I enter those characters, it says that I need to enter all three character groups: [a-z], [A-Z], [0-9].> To: user@struts.apache.org> From: [EMAIL PROTECTED]> Subject: Re: regex validation problem> Date: Tue, 1 Jan 2008 18:38:55

Re: regex validation problem

2008-01-01 Thread Laurie Harper
supa charoenchit wrote: Hello, I am having a problem validating a password field. My requirement on my password is that it must be: 8 characters minimum length and contain at least one from each of the following groups: [a-z], [A-Z], and [0-9]. Here is what I have so far (which is not workin