473,657 Members | 2,316 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Regex validation problem

Can anyone point out the problem with this? The commented regex var
and if statement dont work and break the GroupName check when
uncommented. I tested the AccessCodeRegxp with preg_match and it seems
to work fine, it just wont here. Any pointers would be great.

<script language="javas cript"><!--
function check_form() {
var error = 0;
var error_message = "<?php echo JS_ERROR; ?>";
var customers_group _name =
document.custom ers.customers_g roup_name.value ;
var customers_group _access_code =
document.custom ers.customers_g roup_access_cod e.value;

var GroupNameRegxp = /^([0-9a-zA-Z]+){8,32}$/;
/* var AccessCodeRegxp =
/^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{6,12}$/;*/
if (!GroupNameRegx p.test(customer s_group_name)) {
error_message = error_message + "<?php echo
ERROR_CUSTOMERS _GROUP_NAME.'\n '; ?>";
error = 1;
}

/* if (!AccessCodeReg xp.test(custome rs_group_access _code) {
error_message = error_message + "< ?php echo
ERROR_CUSTOMERS _GROUP_ACCESS_C ODE; ?>";
error = 1;
}*/

if (error == 1) {
alert(error_mes sage);
return false;
} else {
return true;
}
}
//--></script>
Matt Mika

"These animals evacuate ethyl alcohol from their bowels and carbon dioxide from their urinary organs. Thus, one can observe how a specially lighter fluid is exuded from the anus and rises vertically whereas a stream of carbon dioxide is ejected at very short intervals from enormously long genitales."

Justus Freiherr von Liebig - 1839
Mar 2 '07 #1
7 1676
On Mar 2, 12:58 pm, MattMika <mattm...@hotma il.comwrote:
Can anyone point out the problem with this? The commented regex var
and if statement dont work and break the GroupName check when
uncommented. I tested the AccessCodeRegxp with preg_match and it seems
to work fine, it just wont here. Any pointers would be great.
Matt,

Could you post the string you're trying to match with AccessCodeRegxp ?

--
Larry

Mar 2 '07 #2
On 2 Mar 2007 13:26:43 -0800, "Larry Marburger" <lm********@gma il.com>
wrote:
>On Mar 2, 12:58 pm, MattMika <mattm...@hotma il.comwrote:
>Can anyone point out the problem with this? The commented regex var
and if statement dont work and break the GroupName check when
uncommented. I tested the AccessCodeRegxp with preg_match and it seems
to work fine, it just wont here. Any pointers would be great.

Matt,

Could you post the string you're trying to match with AccessCodeRegxp ?
I've been trying all kinds of combinations. This is for a form on our
customer groups admin page on our ecommerce site. The idea is to have
our people create 'access codes' that arent real easy to guess when
creating new customer groups, ie. a string 6 to 12 chars in length,
that contains one number, one lowercase letter, one uppercase letter,
and one special character - !, @, #, $, %, ^, & or *

valid codes:
@tHom3
123$aBCD
ThisCod3!
AppleC@re22
As*ixs3

I should've only posted the code below as the groupname stuff works
fine by itself, it only breaks when this 'access code' regex is
present. I've been unable to get the 'access code' regex to check
properly even though the regex works fine in preg_match.

function check_form() {
var error = 0;
var error_message = "<?php echo JS_ERROR; ?>";
var customers_group _access_code =
document.custom ers.customers_g roup_access_cod e.value;

var AccessCodeRegxp =
/^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{6,12}$/;

//alert(customers _group_access_c ode);
if (!AccessCodeReg xp.test(custome rs_group_access _code) {
error_message = error_message + "<?php echo
ERROR_CUSTOMERS _GROUP_ACCESS_C ODE; ?>";
error = 1;
}

if (error == 1) {
alert(error_mes sage);
return false;
} else {
return true;
}
}

I can see the form input with alert(customers _group_access_c ode);, but
this will not return an error if the code does not comply with the
regex or even when its empty.
TIA
Matt Mika
Mar 2 '07 #3
On Mar 2, 4:26 pm, MattMika <mattm...@hotma il.comwrote:
if (!AccessCodeReg xp.test(custome rs_group_access _code) {

^^ Missing Closing paranthesis.

Mar 2 '07 #4
On 2 Mar 2007 15:22:11 -0800, sc************* @gmail.com wrote:
>On Mar 2, 4:26 pm, MattMika <mattm...@hotma il.comwrote:
> if (!AccessCodeReg xp.test(custome rs_group_access _code) {


^^ Missing Closing paranthesis.

Sure enough! jeez...

Getting something out of it now, unfortunately it wont match unless my
characters are in the order they are in the regex :(

/^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{6,12}$/
ie. digit, lowercase, uppercase, special

Wonder why it doesnt do that in preg_match? Any differences between
how preg_match and js interpret regex I should know about?

Thanks
Matt Mika
Mar 3 '07 #5
On Mar 2, 7:26 pm, MattMika <mattm...@hotma il.comwrote:
On 2 Mar 2007 15:22:11 -0800, scripts.cont... @gmail.com wrote:
On Mar 2, 4:26 pm, MattMika <mattm...@hotma il.comwrote:
if (!AccessCodeReg xp.test(custome rs_group_access _code) {
^^ Missing Closing paranthesis.

Sure enough! jeez...

Getting something out of it now, unfortunately it wont match unless my
characters are in the order they are in the regex :(

/^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{6,12}$/
ie. digit, lowercase, uppercase, special

Wonder why it doesnt do that in preg_match? Any differences between
how preg_match and js interpret regex I should know about?

Thanks
Matt Mika
Matt,

I just tried the following code and it works fine for me.

var re = /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{6,12}$/;
alert(re.exec(" aA@3ab"));
alert(re.test(" aA@3ab"));

I didn't try all your code, but the regex should be fine. Go simpler
with your code and see if it really in the regex that's not working
properly.

--
Larry

Mar 3 '07 #6
On 3 Mar 2007 05:32:51 -0800, "Larry Marburger" <lm********@gma il.com>
wrote:
>I just tried the following code and it works fine for me.

var re = /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{6,12}$/;
alert(re.exec( "aA@3ab"));
alert(re.test( "aA@3ab"));

I didn't try all your code, but the regex should be fine. Go simpler
with your code and see if it really in the regex that's not working
properly.
Thanks guys.

Turns out IE7 was the problem(besides the missing parenthesis). Larrys
exec and test code returned null and false so I finally checked
another browser. FireFox and Netscape both do fine with your code and
mine. I'll have to find a machine here running IE6 and see what it
does...

Are there any resources out there that might help me to figure this
out or am I pretty much screwed in IE7? If so I'll probably just scrap
this and generate a access code with no user input allowed...

Thnx,
Matt Mika
Mar 5 '07 #7
On Mon, 05 Mar 2007 14:22:06 -0700, MattMika wrote:
On 3 Mar 2007 05:32:51 -0800, "Larry Marburger" <lm********@gma il.com>
wrote:
>>I just tried the following code and it works fine for me.

var re = /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{6,12}$/;
alert(re.exec ("aA@3ab"));
alert(re.test ("aA@3ab"));

I didn't try all your code, but the regex should be fine. Go simpler
with your code and see if it really in the regex that's not working
properly.

Thanks guys.

Turns out IE7 was the problem
That doesn't surprise me.

I've seen sites that render exactly the same in IE6, Firefox and Opera
that don't render correctly in IE7... it's a pretty easy assumption that
client-side coding is broken too.
Mar 5 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2400
by: Alan Pretre | last post by:
Can anyone help me figure out a regex pattern for the following input example: xxx:a=b,c=d,yyy:e=f,zzz:www:g=h,i=j,l=m I would want four matches from this: 1. xxx a=b,c=d 2. yyy e=f 3. zzz (empty) 4. www g=h,i=j,l=m
1
1722
by: Colin Reid | last post by:
Hey MS, here's an apparent problem in the base class library. I pulled the email validation pattern "^((*)*@(()+(*)*\.)+{2,9})" from http://regexlib.com. If I validate the email address "test@someverylongemailaddress.com" against it by just creating a RegEx and calling IsMatch it works fine, but if I create a schema defining a simple type restricting an xs:string by the regex pattern, it takes over full minute at 100% cpu to match....
2
1853
by: Jan | last post by:
Hi all, I have got the following problem: User fills in excel sheet, this is loaded in Acces. After this I run a validation tool to validate the field formats. One fields is allowed to be null, empty (length = 0) and max 30 chars. I use the following expression: ^.{0,30}\b It seems that this is not working as I would expect when fields are empty or
3
1948
by: Mike | last post by:
I'm trying to have a form where a user has to enter a valid email address, and I'm trying to use the RegEx Validation control to do that. The problem is that when a user submits the form with a blank line, it is ACCEPTED even though it does not pass the pattern match in the expression. Another problem is that if there are leading spaces or trailing in a valid email address, the expression fails. Case 1:(blank) : ...
2
1576
by: Hailstorm | last post by:
How can I control if "a textbox is empty or not" with regex validation? I don't want to use required field validator because I have a masked textbox control and it has "ValidationExpress" property. For example, if I want to control if it's a time value, I use "(()|())()" but it doesn't work when textbox is empty. How can I solve this problem? I want user to fill this area. And by the way, if I try to use a req field validator for this, my...
4
1359
by: | last post by:
Here is an interesting one. Running asp.net 2.0 beta 2. I have a regular expression used in a regex validator that works on the client side in Firefox but not in IE. Any ideas? IE always reports the field is invalid. The expression is: ^(?!\d)(?=.*\d)(?=.*)(?=.*)(?=.*).{8,25}$ If I enter "Test_Field1" Firefox considers it valid on client side, IE doesnt. Server side considers it valid too because when I submit the form in
3
3971
by: jab3 | last post by:
Hello. I"m new to this group, and to JavaScript in general, so please forgive me if I breach local etiquette. I'm trying to implement some client-side 'dynamic' validation on a form. I'm having a couple of problems, which I'll try to describe. But this e-mail will only reproduce one of them, in a "short" example. What I'm generally doing is having each form entry contained in a div, which as a label, an input with some event handlers,...
1
1947
by: Jim Dornbush | last post by:
Has anyone seen an updated regex expression from Microsoft for the email validation expression so that single quotes are allowed? I've been using the canned regex for emails, but recently been informed by a customer that the single quote is allowed as part of the email address (Mr. O'Leary). I prefer using the un-modified version from the framework, but will update my local code regardless.
10
1865
by: bullockbefriending bard | last post by:
first, regex part: I am new to regexes and have come up with the following expression: ((1|),(1|)/){5}(1|),(1|) to exactly match strings which look like this: 1,2/3,4/5,6/7,8/9,10/11,12 i.e. 6 comma-delimited pairs of integer numbers separated by the
0
8838
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8739
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8513
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8613
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4329
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1969
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1732
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.