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.
|
|
|
Should be:
This assumes no special format - it will accept digits or letters anywhere. The regex reads:
Keep in mind it is a relatively easy task, and you can solve it with simple string manipulation. |
|||||||||||||
|
i don't know the rules for your string, but this should work. |
||||
|
|