Help for this page

Select Code to Download


  1. or download this
    my %allowed = ( u => 1, i => 1, b => 1);
    my $text = "";
    ...
            $text .= $token->as_is;
        }
    }
    
  2. or download this
    my @match = grep /$lookup/, split /\n/, $text;
    print "$_\n" foreach @match;