Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    my $res = index ($corpus, $lookfor) > -1 ? 1 : 0;
    ok $res, 'Substring found';
    
  2. or download this
    use strict;
    use warnings;
    ...
    $corpus = 'Something else';
    $res = index ($corpus, $lookfor) + 1;
    ok !$res, 'Substring not found';