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 |
When would `local $_' in a function ruin your day?
What does -> symbol indicates in Perl?
How to replace perl array elements?
What is the use of "stderr()"?
Explain tk?
How to open a directory in perl?
What does init 5 and init 0 do?
What do you mean by context of a subroutine?
Write syntax to add two arrays together in perl?
What does the command "use strict" do and why should you use it?
What is hash?
What is the use of -n and -p options?