JKG Posted August 30, 2011 Share Posted August 30, 2011 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!!! Quote Link to comment https://forums.phpfreaks.com/topic/246066-line-of-jquery-regex-need-to-allow-lowercase-as-well-as-uppercase/ Share on other sites More sharing options...
nogray Posted August 30, 2011 Share Posted August 30, 2011 you can add a flag to ignore case to your regexp, e.g. /my regexp/i (see the i after the /) Quote Link to comment https://forums.phpfreaks.com/topic/246066-line-of-jquery-regex-need-to-allow-lowercase-as-well-as-uppercase/#findComment-1263718 Share on other sites More sharing options...
JKG Posted August 30, 2011 Author Share Posted August 30, 2011 thanks a lot, that seems to work really well. it only ignores uppercase/lowercase? nothing else? thanks again. Quote Link to comment https://forums.phpfreaks.com/topic/246066-line-of-jquery-regex-need-to-allow-lowercase-as-well-as-uppercase/#findComment-1263723 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.