Help for this page

Select Code to Download


  1. or download this
    # Program : 1
    #!/usr/bin/perl
    ...
    if ( grep( /^$match/,@array ) ) {
       print "Matched\n";
    }
    
  2. or download this
    Output :
    Matched
    
  3. or download this
    # Program : 2
    #!/usr/bin/perl
    ...
    <code>
    Output :
    Matched
    
  4. or download this
    # Program : 3
    #!/usr/bin/perl
    ...
    if ( grep( /^$match$/,@array ) ) {
       print "Matched\n";
    }