Help for this page

Select Code to Download


  1. or download this
    my $re = qr{
      (?>
    ...
        (?<SUB_DELIMS>[!\$&'\(\)\*\+,;=]                             )
      )
    }x;
    
  2. or download this
    if ("This is the same address in IPv6: 0:0:0:0:0:0:0:1 and 127.0.0.1" 
    +=~ /$re/g ) {
      say $&;
      say $1;
      say $2;
    }