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 a string like this: R3(a1b1,a1c1,b2c1), or R3(a1b1,a1c1,b2c1). I want to split it into two arrays [R3] and [a1b1,a1c1,b2c1]. I tried some naive ways such as String line1[] = line.replaceAll("\\(", ",").replaceAll("\\)", "").replaceAll("\\.", "").split(","); to split the string into an array and then split the array but it doesn't work.

share|improve this question
4  
"it doesn't work." Can you be more specific? What was the error? – Mark Byers Apr 27 '12 at 17:13
Sorry. My bad. The error comes from another code. – v4r Apr 28 '12 at 3:27

closed as not a real question by casperOne Apr 30 '12 at 13:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

Your regexs should be

String rx1 = "[()]";
String rx2 = ",";
share|improve this answer

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