Help for this page

Select Code to Download


  1. or download this
    if (@kitties = $string =~ /pattern (with) captures/) {
      paw_at @kitties;
    }
    
  2. or download this
    if ($string =~ /pattern (with) captures/) {
      paw_at $1;
    }