Help for this page

Select Code to Download


  1. or download this
    my $string = 'string here';
    my $index = index $string, 'bah';
    print $index if $index;
    
  2. or download this
    if (my $index = index $string, $key) {
        # yadda
    }