I am trying to write a regular expression which returns a string which is between parentheses. For example: I want to get the string which resides between the strings \"(\"
For just digits after a currency sign : \(.+\s*\d+\s*\) should work
\(.+\s*\d+\s*\)
Or \(.+\) for anything inside brackets
\(.+\)