Jump to content

line of jquery REGEX, need to allow lowercase as well as uppercase


JKG

Recommended Posts

hey,

 

im no good with js.

 

i have this line which is from position-absolute's jquery validator.

 

	$.validationEngineLanguage.allRules["postcodeUK"] = {
	        // UK zip codes
	        "regex": /^([A-PR-UWYZ0-9][A-HK-Y0-9][AEHMNPRTVXY0-9]?[ABEHMNPRVWXY0-9]? {1,2}[0-9][ABD-HJLN-UW-Z]{2}|GIR 0AA)$/,
			"alertText": "* Invalid postcode, please use capital letters and a space."
	};

 

currently it only accepts, as you can see, caps, how do i allow lower case too?

 

this doesnt work, any ideas?

 

	$.validationEngineLanguage.allRules["postcodeUK"] = {
	        // UK zip codes
	        "regex": /^([Aa-PpRr-UuWwYyZz0-9][Aa-HhKk-Yy0-9][AaEeHhMmNnPpRrTtVvXxYt0-9]?[AaBbEeHhMmNnPpRrVvWwXxYy0-9]? {1,2}[0-9][AaBbDd-HhJjLlNn-UuWw-Zz]{2}|GgIiRr 0AaAa)$/,
			"alertText": "* Invalid postcode, please use capital letters and a space."
	};

 

thanks for your help!!!

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.