I need to check wether matching parenthesis is present in a string that might have emoticons (like :)
or :(
). For example, "(:)())()"
, "(abcd)()ghijk)((mnop)qert)"
I have used the patterns "^[:\\(|:\\)]"
to check for emoticons and "\\([^()]*\\)"
to check for matching parenthesis present, but they are not detected. How can I do this?