I am trying to come up with the regex to find strings matching the following pattern:
(someNumber - someNumber) With the parenthesis included.
I tried:
"\\([1-9]*-[1-9]*\\)"
but that doesn't seem to work.
I also need to match:
The letter W or L followed by (someNumber - someNumber) With the parenthesis included.
I tried to use the same pattern above, slightly modified, but again, no luck:
"W|L \\([1-9]*-[1-9]*\\)"
Any help would be appreciated