vote up 2 vote down star

I have a regular expression which works for validating UK postal codes but now I would like to extract the constituent parts of the code and I'm getting confused. For those who do not know examples of UK postal codes are 'WC1 1AA', 'WC11 1AA' and 'M1 1AA'.

The regular expression below (apologies for the formatting) handles the lack of a space (this is the \s{0,} bit) between the left and right parts and still validates (which is great).

(?:(?:A[BL]|B[ABDHLNRST]?|C[ABFHMORTVW]|D[ADEGHLNTY]|E[CHNX]?|F[KY]|G[LUY]?|H[ADGPRSUX]|I[GMPV]|JE|K[ATWY]|L[ADELNSU]?|M[EKL]?|N[EGNPRW]?|O[LX]|P[AEHLOR]|R[GHM]|S[AEGKLMNOPRSTWY]?|T[ADFNQRSW]|UB|W[ACDFNRSV]?|YO|ZE)\d(?:\d|[A-Z])?\s{0,}\d[A-Z]{2})

I'd like to be able to extract the left and right hand sides now and I know that brackets are used for this, but there are already brackets in there and the regex specification is not easy to read. So I guess these brackets need replacing, can anyone help me rework my brackets?

I can see other people would find this regex of use, so please feel free to use it for validating UK postal addresses.

Thanks in advance

Ryan

flag

77% accept rate

3 Answers

vote up 5 vote down check

Actually, parentheses are used for extraction, not brackets. The (?: constructs in your expression are how you prevent parentheses from performing extraction. You would want:

(?:((?:A[BL]|B[ABDHLNRST]?|C[ABFHMORTVW]|D[ADEGHLNTY]|E[CHNX]?|F[KY]|G[LUY]?|H[ADGPRSUX]|I[GMPV]|JE|K[ATWY]|L[ADELNSU]?|M[EKL]?|N[EGNPRW]?|O[LX]|P[AEHLOR]|R[GHM]|S[AEGKLMNOPRSTWY]?|T[ADFNQRSW]|UB|W[ACDFNRSV]?|YO|ZE)\d(?:\d|[A-Z])?)\s{0,}(\d[A-Z]{2}))

Incidentally, I would also make this change:

(?:((?:A[BL]|B[ABDHLNRST]?|C[ABFHMORTVW]|D[ADEGHLNTY]|E[CHNX]?|F[KY]|G[LUY]?|H[ADGPRSUX]|I[GMPV]|JE|K[ATWY]|L[ADELNSU]?|M[EKL]?|N[EGNPRW]?|O[LX]|P[AEHLOR]|R[GHM]|S[AEGKLMNOPRSTWY]?|T[ADFNQRSW]|UB|W[ACDFNRSV]?|YO|ZE)\d(?:\d|[A-Z])?)\s*(\d[A-Z]{2}))

because \s{0,} is a goofy way to write \s*.

link|flag
You're right about "\s{0,}" meaning \s*. But I think \s should not be optional or you'll split two parts incorrectly. Maybe author meant "{1,}" (or "+"). – Marko Dumic Mar 26 at 15:19
This may be a language issue, Brits call this character "(" a bracket. – Chas. Owens Mar 26 at 15:19
To be honest, I get very confused with regex. I meant 'any number of spaces, including zero'. Also, brackets / parentheses are synonymous in UK English, apologies for the confusion. – Ryan ONeill Mar 26 at 15:20
That is not quite working for me, I am using M1 1AA and I get 1 match, not 2 as I had hoped. – Ryan ONeill Mar 26 at 15:22
The additional results will be in the Groups property of your 1 match. – Chris Shaffer Mar 26 at 15:25
show 5 more comments
vote up 5 vote down

Additionally, I'd recommend against trying to check the postcode so thoroughly. The list of valid postcodes can change, so you'll have to maintain the expression every time the Post Office updates the PAF.

You're also missing some of the “special postcodes” like BFPO, GIR, the non-geographic postcodes and overseas territories. See wiki for an overview of what's out there you might have to deal with.

In general for most purposes a “does it look plausible?” check is better than trying to nail it down completely. There's nothing worse than telling customers they can't use your service because their address doesn't exist.

link|flag
I wish I could mark this as an answer too, good point. – Ryan ONeill Mar 28 at 17:41
vote up 1 vote down

When dealing with a large regex like this you should use the /x option (which I think is called RegexOptions.IgnorePatternWhitespace in C#). (?:) is not capturing, so all you need to do is put () around the parts you want. Another benefit of the /x option is that you can comment the regex with end-of-line comments (they start with #). You may also might need to be careful with \d and \s. They may match more than you expect (\s matches all whitespace, not just spaces and, at least in Perl 5.8 and later, \d matches all UNICODE digit characters, not just [0-9])

Regex exp = new Regex(@"
    (?:
        ( #capture first part
            (?:
                A[BL]        | B[ABDHLNRST]? | C[ABFHMORTVW]      |
                D[ADEGHLNTY] | E[CHNX]?      | F[KY]              |
                G[LUY]?      | H[ADGPRSUX]   | I[GMPV]            |
                JE           | K[ATWY]       | L[ADELNSU]?        |
                M[EKL]?      | N[EGNPRW]?    | O[LX]              |
                P[AEHLOR]    | R[GHM]        | S[AEGKLMNOPRSTWY]? |
                T[ADFNQRSW]  | UB            | W[ACDFNRSV]?       |
                YO           | ZE
            )
            \d
            (?:
                \d | [A-Z]
            )?
        ) #end capture of first part
        \s{0,}
        ( #capture second part
            \d[A-Z]{2}
        ) #end capture of second part
    )",
    RegexOptions.IgnorePatternWhitespace
);
link|flag
Brilliant, that makes maintenance so much easier. – Ryan ONeill Mar 26 at 16:41
Just one quibble: "(?:\d|[A-Z])?" can be replaced with "[\dA-Z]?" – Alan Moore Mar 27 at 10:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.