|
Posted by jamen on 10/07/29 11:34
Kimmo Laine wrote:
> The missing ) is here: /(\)/
> since you are using the backslash, which is an escape character, it escapes
> the ), but actually you should be using
> /(\\)/
actually, this regex is still broken. You start a group, but never
finish it. If you wanted to match ) then it should be
/(\\))/
Navigation:
[Reply to this message]
|