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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
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.