Regular expression to match a string having string inside parenthisis
I want a create a regular expression that matches the certain rules. I found this RE – /^.*\(.*\).*$/g but i also wanted to have validation on second string inside parenthesis. eg- United Kingdom (English) Belgium (Dutch) ie- expression for [string space string inside parenthesis with at least 3 length of inside string.]. Thank you in… Read More Regular expression to match a string having string inside parenthisis