I have got a string containing an address and I want to remove the post code which is the last 2 words.
eg 21 Lane Street London W10 2GH
I want 'W10 2GH' removed
|
I have got a string containing an address and I want to remove the post code which is the last 2 words. eg I want 'W10 2GH' removed |
||||
|
|
|
Replace the pattern
produces:
A short explanation:
|
|||||||||||
|
|
Lots of ways. The easiest in this situation is just use It might be a bit safer and stronger to use a regular expression to search for actual post codes. |
|||||||
|