![]() |
PCRE... and i thought i understood it
Ok so here are a few examples of what i am trying to allow
2E2X1 3C051 5B174 First spot needs to be a number, second a letter, third a number again, forth any of the following: X,1,3,5,7,9 and then fifth a number again. I am also trying to allow it to have "DEP" and "Civ" as an option to type as well but would like the capitalization to hold. So here is my expression but i don't fully understand it as much as i thought i did ^[0-9][A-Z][0-9][X13579][0-9]|[DEP]|[Civ]$ Any help would be much appreciated. |
Something like:
Code:
^([0-9][A-Z][0-9][X13579][0-9])|DEP|Civ$ |
ok so with that it allows me to put depP and civV... the extra characters and wrong capitals (although i guess nit picky of me) are not what i am trying to do. With [A-Z] it doesn't allow lower case... how can i do that for DEP and Civ?
|
As long as you aren't using the "i" modifier, it should be case sensitive.
|
Quote:
|
Code:
/^([0-9][A-Z][0-9][X13579][0-9])(DEP|Civ)$/ |
Quote:
|
Try
Code:
^([0-9][A-Z][0-9][X13579][0-9])|(DEP|Civ)$ |
Quote:
|
Code:
/^([0-9][A-Z][0-9][X13579][0-9])(DEP|Civ){0,1}$/ |
All times are GMT. The time now is 04:11 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|