Help for this page

Select Code to Download


  1. or download this
    use strict;
    my $s = "abcdefghijklmnopqrstuvwxyz";
    ...
    eval"\$s=~tr/$t//cd";
    $s eq$t;
    }
    
  2. or download this
    sub x{
    eval"\$_[0]=~tr/$_[1]//cd";$_[0]eq$_[1];
    }