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

Could anyone tell me how I can take this: (King's_Cross_St_Pancras, Farringdon, Hammersmith_&_City_Line)

And split it into:

array[0]: King's_Cross_St_Pancras
array[1]: Farringdon
array[2]: Hammersmith_&_City_Line

The regex should also account for < > non-word characters too. I have tried to make the regex using: "\b(<>&')?" .. this is however completely useless.

Please help

share|improve this question
Platform = Java – AlexW Jan 10 '11 at 0:30
yourString.split(", ") does exactly that; isn't that enough ? – Costi Ciudatu Jan 10 '11 at 0:37

2 Answers

up vote 1 down vote accepted

You can do this easier and quicker without an RegEx:

String str = "(King's_Cross_St_Pancras, Farringdon, Hammersmith_&_City_Line)";
String result[] = str.substring(1, str.length()-1).split(",");
share|improve this answer
You are right, fixed it. Thanks for noticing. :) – atticae Jan 10 '11 at 0:46
cheers dude appreciate the help. RegEx are quite difficult – AlexW Jan 10 '11 at 1:13

There's no need to use a regular expression here. Strip the () using String.substring(), then split the string into tokens using String.split(). Although technically this is also a regex solution, as String.split() takes a regex. :)

String s = "(King's_Cross_St_Pancras, Farringdon, Hammersmith_&_City_Line)";
s = s.substring(1, s.length()-1);
String tokens[] = s.split(", ");

Result:

King's_Cross_St_Pancras
Farringdon
Hammersmith_&_City_Line

http://ideone.com/zSDN5

share|improve this answer
String.prototype.length is a Number, not a Function... – Hello71 Jan 10 '11 at 3:06
@Hello71 No it isn't. You're confusing strings with arrays. – marcog Jan 10 '11 at 8:49
No I'm not. I'm confusing Java with JavaScript. :| – Hello71 Jan 10 '11 at 22:17
I gave answer to @atticae as it was slightly more succinct/elegant. Also he needs the points more! :) – AlexW Jan 10 '11 at 22:40

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.