Help for this page

Select Code to Download


  1. or download this
    my $string = '13,130,213';
    my $check = '13';
    ...
    else {
        print "'${check}' is NOT in '${string}'\n";
    }
    
  2. or download this
    my $string = '100,two hundred,300,400,500,600,700,800';
    my @checks = ( qw/200 400 600 700 900/ );
    ...
            print "'${check}' is NOT in '${string}'\n";
        }
    }