My string is:
Frequency/FA ID VerifiedFA0 FAID5(125)/FA1 FAID7(175)/FA2 FAID1(476)
The regex I'm trying to create should extract these numbers:
125, 175, 476
I did it by looking at this example but there must be a better one.
myString.replaceAll(".+\\(([0-9]+)\\).+\\(([0-9]+)\\).+\\(([0-9]+)\\).*","$1,$2,$3")