Help for this page

Select Code to Download


  1. or download this
      /(?x:((?-x:)) # (comment)
      )/
    
  2. or download this
      /((?-x:)) # (comment)
      /x
    
  3. or download this
                else if (s[2] == '{' /* This should match regcomp.c */
                         || ((s[2] == 'p' || s[2] == '?') && s[3] == '{'))
    
  4. or download this
      our $re_true = qr{(?=)}x;
      our $re_false = qr{(?!)}x;
    ...
        )+?
        (??{ $count == 0 ? $re_true : $re_false })
      /xgc;