I am trying to match ) if there is a ( and two numbers to the left of it.
Example "(55)" I want to match ) in "(55)"
I do not want to match "(hello world 55)"
I currently have the following as my regex:
\(\d+\)
It matches "(55)" but I just want the ) in it. Is there a way to get a certain character by placement in a regex? Or do you have a better solution?