... Either extend the @INC variable in a BEGIN block, BEGIN { ... } or use the -I switch on the perl command line, or use the PERL5LIB environment variable. ...
Hi, I have the following immediate requirement with a MAJOR Financial client (DIRECT CLIENT) based at NYC. PS: There are 3 requirements, the 1st position is...
We are looking for a script which would on Windows NT and monitor 3 processes (specifiable) if these processes run for more than 5 minutes, the scrripr...
Hi, I have the following immediate requirement with a MAJOR Financial client (DIRECT CLIENT) based at NYC. PS: There are 3 requirements, the 1st position is...
Hi, This is an urgent requirement. Our client, an American MNC in Bangalore is seeking Java Lead Professionals. Details below. Only those who meet all the...
Hi, This is an urgent requirement. Our client, an American MNC in Bangalore is seeking Operation Support (Networking) Engineers . Details below. Only those...
Hi, This is an urgent requirement. Our client, an American MNC in Bangalore is seeking Technical Support Engineers . Details below. Only those who meet all...
Hi, This is an urgent requirement. Our client, an American MNC in Bangalore is seeking Java Professionals. Details below. Only those who meet all the...
Hi All Please visit ... http://www.boredguru.com/polls/comp1/votpoll.php Regards Yogi BoredGuru [Non-text portions of this message have been removed]...
Hi, I'm posting this for two reasons. First, off who heard of kake pad(kPad)? Secondly, I just released the 5.0 which is the best thing since the 4.x series. I...
Hi there, Is there a way in Perl to check if the elements in an array are unique efficiently. I'll apprecate your help on this as this will help me from ...
... Be more specific, you mean unique and in not equal or in more detail? ===== Sincerely, Paul Malcher __________________________________ Do you Yahoo!? ...
How can something like this be made to execute the javascript on the page and return its output instead of the initial html code? #!/usr/local/bin/perl use...
Gary Hawkins
ghawk@...
Jan 21, 2004 3:01 am
1377
... Usually, a good thing would be to use a hash instead, where you use only the key (and ignore the value). Do you *have* to use an array? Ronald...
Hi, I am dealing with a file that is tab delimited and where the first line contains the attributes for eg: Name Sex Age Occupation Jhon Male 20 Doctor ...
Try using split with "\t" (tabs). You could also do something cool with it: ($name,$sex,$age,$occ) = (split(/\t/))[0,1,2,3]; Don't forget to chomp the line or...
I'm semi new to perl and need some help on the following problem I have a little decryption program that decrypts the contents of a file. We will be recieving...
... There are many. For instance, you could do it like this: map { open(FILE, $_) or warn "Can not open $_: $!\n"; # Code to process the file goes here. close...
1.How can I print the resoult of this query "select count(*) from table"......????? 2.If I have to many records in database and I want to split them on more ...
Hi all, Anyone help-me ? I need to do comparing two array. So, I have two array with many difference names and I would like to compare two and write the...
HI here's a very simple solution my @arr1 = 0 .. 10; my @arr2 = 0 .. 10; my $comp = Array::Compare->new; if ($comp->compare(\@arr1, \@arr2) { print "Arrays are...
Dear my friends... Anybody would be so kind telling me what is similar in perl/tk to arrange the location of a form written in perl/tk? I want a nice look for...
Hi Group, I am new to Perl. I am trying to write a program that reads in a file and then checks the line length. based on the lenght, data is written to 1 of...
... $inputfile contains the first line of Trade.txt (because you had evaluated the angle operator in scalar context. $length contains therefore the length of...
Please help, Another newbie question. I am trying to figure out how to search though a file that i've opened for a 3 different string of characters. once the...
Hi all, I've encountered a porblem I don't understand. Below is a small chunk of cgi code that reads usernames and passwords from a file. Despite the fact I...