Help for this page

Select Code to Download


  1. or download this
    my $line    = '        [Category("notestrecord")]';
    my $pattern = 'Category("notestrecord")';
    ...
    } else {
        print "No match!\n";
    }
    
  2. or download this
    if (index($line, $pattern) >= 0) { ... }