how to search a unique pattern in a file by using perl hash
map function ??? plz answer me
Answers were Sorted based on User's Feedback
Answer / hemant
I did't got ur answer ..!!
Can u explain it a lil Bit ...
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / vinod mishra
open(FH, "file");
@array = <FH>;
%seen = ();
@uniq = grep{!seen{$_}++} @array;
| Is This Answer Correct ? | 1 Yes | 6 No |
What is warn function in perl?
How many types of primary data structures in Perl and what do they mean?
How does polymorphism work in perl? Give an example.
What is caller function in perl?
how to connect cisco switch uisng perl script
Explain substr function in perl?
Explain the execution of a program in perl.
How to compare two strings in perl?
How to access parameters passed to a subroutine in perl?
What are scalar data and scalar variables?
What are the advantages of c over Perl?
If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?