Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 9 down vote accepted

Replace the pattern \s*\w+\s+\w+$ with an empty String:

String s = "21 Lane Street London W10 2GH";
System.out.println(s.replaceFirst("\\s*\\w+\\s+\\w+$", ""));

produces:

21 Lane Street London

A short explanation:

\s*  # zero or more white space chars
\w+  # one or more alpha-nums (or underscore), specifically: [a-zA-Z0-9_]
\s+  # one or more white space chars
\w+  # one or more alpha-nums (or underscore)
$    # the end of the input
share|improve this answer
Can you explain to me what that regrex is doing exactly please. thanks – Dave819 Feb 22 '11 at 15:35
just see java.util.regex.Pattern – Daniel Feb 22 '11 at 15:37
@Dave: added a short explanation. – Bart Kiers Feb 22 '11 at 15:37
It works great. thanks – Dave819 Feb 22 '11 at 15:41
You probably want to restrict this a bit more -- use \w\w\w or \w{3}. Otherwise, it will match things like '21 Lane Street London' and convert to '21 Lane'. Or even '\w\d\d\s+\d\w\w'. – Charlie Martin Feb 22 '11 at 20:13
show 2 more comments

Lots of ways. The easiest in this situation is just use rindex() lastIndexOf() to find the blanks.

It might be a bit safer and stronger to use a regular expression to search for actual post codes.

share|improve this answer
You have a reference for rindex() ? – aioobe Feb 22 '11 at 15:36
By rindex() I think Charlie meant lastIndexOf, here: download.oracle.com/javase/6/docs/api/java/lang/… (all the three overloads may be useful) – Haakon Feb 22 '11 at 15:44
Yes, dammit, brain slopover from Python. – Charlie Martin Feb 22 '11 at 20:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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