Help for this page

Select Code to Download


  1. or download this
    /
    \A         # start at the beginning of the string
    [^\(]+     # match one or more non-( characters
    ...
    )*         # match this subexpression zero or more times
    \z         # end at the end of the string
    /x;