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 does the qq{ } operator do?
Explain what is perl language?
What?s your favorite module and why?
Which has the highest precedence, List or Terms? Explain?
What can be done for efficient parameter passing in perl?
Is there any way to add two arrays together?
How to open and read data files with Perl
How to read a file into a hash array?
Explain goto label, goto name, and goto expr?
How to copy a file in perl?
What does this symbol mean '->'?
Explain ivalue?