Help for this page

Select Code to Download


  1. or download this
    $B .= "$1\n" unless $1 =~ /def/;
    
  2. or download this
    $B .= "$1\n" if $match =~ /def/;
    
  3. or download this
    while ($A =~ m{(.+)}g)
    {
        my $capture = $1;
        $B .= "$capture\n" if $capture =~ /def/;
    }