I have the following string:
"The girl with the dragon tattoo (LISBETH)"
and I need to get only the string in the brackets at the end of the input.
So far I came to this:
public static void main(String[] args) {
Pattern pattern =
Pattern.compile("\\({1}([a-zA-Z0-9]*)\\){1}");
Matcher matcher = pattern.matcher("The girl with the dragon tattoo (LISBETH)");
boolean found = false;
while (matcher.find()) {
System.out.println("I found the text " + matcher.group()
+ " starting at " + "index " + matcher.start()
+ " and ending at index " +
matcher.end());
found = true;
}
if (!found) {
System.out.println("No match found");
}
}
But as a result I get: (LISBETH).
How to get away from those brackets?
Thanks!