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 are some of the key features of objects in perl?
What arguments do you frequently use for the Perl interpreter and what do they mean?
How do I replace every TAB character in a file with a comma?
What is the tk module?
Define perl scripting?
Explain what is STDIN, STDOUT and STDERR?
What is eval function in perl?
What is the difference between perl array and perl hash?
What is the easiest way to download the contents of a URL with Perl?
What package you use to create a windows services?
What is caller function in perl?
How to open and read data files with Perl