Lets say I have string like this:
String q = "foo (one) bla (two) zoo key hola (tree) (four) five"
I want to extract the strings in parentheses into string array
so this would be true:
stringArray[3].equals("four")
Is there something in commons package or other trick to do this?