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
Slight change:
This finds exactly 3 digits inside of parentheses: ((\d\d\d))
The actual string value (in java) is: "(\\(\\d\\d\\d\\))"
"(\\(\\d\\d\\d\\))"
Test on the Java RegEx Test page