As far as i understand regex tries to match everything mentioned in brackets
eg.
<b>(.*)</b>
Inside a larger regular expressions how do u differentiate between this and the braces mentioned in the regular expression to be matched.
(hello),(how)
in the above example we need to match brackets, but if the reg exp itself has paranthesis [as in first example] then how will it be differentiated?
Thanks