Jins Thomas wrote: [snip] ... my @lparams = qw/hello how are you/; my $lparamNames = \@lparams; print $#lparams, " is the last index of the \@lparams...
... Do you have the specification for the .msg file? We would need to know how the file is organized to munge the data into that format. I assume you already...
Hi Charles, I am new to perl. My requirement is simple. 1. I have a automated system, which will generates report saved in XML file 2. I want to convert the...
... Hello. ... I assumed that. This is a perl beginners list. ... Yes. You explained this in the first email. We already know the file format for producing and...
n.samuel179, You can try OLE, that would allow you to drive Outlook. of course you'd need outlook on the machine. I've had much luck using it for Excel and...
I have a question? My instructor did not pass me on my script/library project because of "illegal division by zero on line 14 of obj13-lib.pl (my library) part...
... fast> return ($functionSum,$functionSum / $count); If $count is 0, then this will divide by 0. And $count could be 0 if there are no lines. -- Randal L....
Apologies for what I am sure just requires a pretty simple logic flow, however I've had a long day... and this IS the place to ask :-) The code below is wrong...
... hooyar66> All I want to do is read from a source text file and write each new hooyar66> line to one of four new files in sequence until the source file is ...
I have a RHEL operating system installed in my machine. This OS supports GUI. Now one application is running say Firefox. Now using Perl program I want to take...
I'll stick my neck out here and ask; in your lib file, how do you increment an uninitialized variable? ... From: fast.linux <fast.linux@...> Subject:...
I'm a bit desperate to locate a resource that can help me understand this assignment. I've plowed through a number of reading assignments, searched online to...
Okay, this is what I came up with (a little better understanding), but where is "for loop" in this? '@array = 1..5; $a = @array; $b = push @array, 6..8; print...
... Karen> I'm a bit desperate to locate a resource that can help me understand Karen> this assignment. I've plowed through a number of reading assignments, ...
A hash of hashes is being passed to the print_array function with the reference $lic_hash. I can get the keys for the outer hash but keys for the inter hash...
... Thank you providing well-formatted and easy-to-read code, and for formulating your question clearly. The error on line 73 is that $lic_hash->$key is...
I knew it had to be simple it worked, thank you. ... Don Dukelow e-mail: dukelow@... ________________________________ From: perl-beginner@yahoogroups.com...
hi i have some skills in C++ and C#.net and of course vb. in past year I've started to use Linux as my secondary OS. It seems Perl and Linux are very good...
... In perl, you will probably be writing the program to interact with the operating system command line prompt, not a web page and not a GUI window. HTH, -- ...
Trying to use Perl to parse through a PDF file to find a string value. Has anyone design code using Perl to open a PDF file to compare a string value inside...
Hi, I am having a perl script which outputs the table data from sybase db in the output.csv file using sql query ... But I need to have column headers/col...
... Ankur> I am having a perl script which outputs the table data from sybase db Ankur> in the output.csv file using sql query ... Are you using DBI? If so,...
I want an efficient subroutine that inserts $elt into @x and returns the percentile of $elt in @x. For example, if @x is (2,2,3,3,3,4,5,6,7,8) and $elt is 3,...