Help for this page

Select Code to Download


  1. or download this
    my $SearchStr = 'foo.txt';
    #my $SearchStr = qr/^foo_.*\.txt\z/i;
    #my $SearchStr = [ 'foo.txt', 'bar.txt' ];
    
    my ($grepresult) = grep { $_->[0] ~~ $SearchStr } @cdata;