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

I'd like a regular expression for Java that can take this string

+1 7183541169 (East coast)

And produce two groups

  • +1 7183541169
  • East coast

I'm having difficulty with escaping the round brackets.

share|improve this question

2 Answers

up vote 3 down vote accepted

Should be:

^(.*)\((.*)\)$

This assumes no special format - it will accept digits or letters anywhere. The regex reads:

^ - Start of the string
(.*) - some letters (captured group)
\( - literal (
(.*) - more letters (captured group)
\) - literal )
$ - end of string

Keep in mind it is a relatively easy task, and you can solve it with simple string manipulation.

share|improve this answer
1  
+1 I was about to say you forgot to capture the first part, but then I saw that it was posted 2 secs ago and refreshed the page :) – Amarghosh Jun 28 '10 at 9:12
This regular expression is to greedy, it'll match many strings wich will not be correct. – Tobias P. Jun 28 '10 at 9:14
Thank you! One day I might get a feel for RegExes.. just not in my DNA for some reason. – Jim Blackler Jun 28 '10 at 9:15
@Tobias - the format can vary. As far as I know, it can be +925-1-800-Regex (St. George's Mnt.) – Kobi Jun 28 '10 at 9:16
@Jim - if that is the case, why use a regex? – Kobi Jun 28 '10 at 9:17
show 2 more comments
/^(\+\d{1} \d+) \(((?:\w| |-)+)\)$/i

i don't know the rules for your string, but this should work.

share|improve this answer

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.