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