Hello folks,
Actually I posted this question before. But I did not know how to put my question back to the comments I got. So I am putting it here.
Question/help:
I have a csv file
Fi...
Hello, my question is hard to explain but I will do my best,
I am using Perl/MySQL to make a shopping cart system and have a very specific requirement for displaying items.
I have manage...
Hello all,
I am trying to get certificate details like Distinguish Name from the browser.when ever the URL of my application is typed in the browser I need to get the details of the machine...
file::find; help
I need to get a list of all files and sub directories in a folder as I would with the windows dir /s /b command. How can I do this with file::find;?
e.g.
:: list all d...
Hi EE,
I have a little script here that is trying to create a CSV with a XML file.
my XML is in the txt file I added to my post.
you see the Perl code also here.
When I execute my pea...
What is Packages, Libraries, and Modules in perl? isn't it a same concept of the reusing the written code already?
Hi,
I would like to parse a table in the HTML docuement fetch for particular value and keep in the scalar valriable.
Could someone suggest me a modue and fuction to achive the same in perl...
Hi, another PERL grep question! I am using GREP to search though text files for a specific value. here is my statement:
@found = grep {/$search_val/} @$lu_array
this worked great until ...
we have a problem where webservers (php/apache) are getting into a strange state and crashing.
here is the dump
any ideas what could be wrong?
I have a group of words with values corresponding to them. Example:
foo -> 12%
bar -> 3%
perl -> 8%
I want to sort this information by the amount ascending, so this would result ...
EXERCISE|005-62360|OPTIONS_RETAIL-INVENTORY|20090918|20090923|S|MAM|1|100|GZU|ZGEN|20090919|10|Puts|10|1000|0|999.97|.03|U05||100||COLLECT|US98985T1097
I need to parse the above data it i...
case (/position for ([A-Z]+) reached) {
print $1 doesn't actuall print the alpha characters. prints empty string. Please advise
Cron Job: Download multiple files from a secure ftp host, which are in the format file.txt.gz - within each compressed file is a plain file.txt, which I need to extract to the local server an...
Hi All
I loose the lose leading 0 on subtract.
How would you define internal and external libraries in Perl? I'm getting mixed information. Several sites say that as long as the commands are native to Perl, then they are internal.
I have a matrix @mat = [[1,2,3],[4,5,6],[7,8,9]];
I need a neat way to compute the sum of elements in each column.
The code would output the result
@vtot = [12,15,18];
Thanks,
pax
I am looking for a script not even sure on what to google because nothing is comming up for me.
What I would like to do is you know how they have a java code or something that says send direc...
I'm having a Perl program written that produces some very big files, I set this files in a directory that is available by http with Apache. After I send a http request to a second server, sayi...
Hi Experts/Gurus,
Please help me to create multiple tab in excel. How to create multiple sheets in one excel sheet.
Basically I've two .CSV files which should be converted into one EXCEL...
Hi,
I have a parent program which needs to spawn a series of child processes and let them run independently. In other words, I don't want to wait for the child exit status.
In looking...
The redirection in the script below fails. Can you help fix it ?
See code below for comments
Thank you
PA
Hello,
I've installed avtiveperl along with some modules. There is an LDAP server that i need to connect to, but when i try this in cmd prompt, it shuts down:
I open run>perl, then perl.exe ...
I am running perl 5.8 on Solaris 8.
I have seen this a few times before and have worked around it, but now it is causing me some big problems. What am I missing?
I have a script that ass...
Hi, Could someone please explain me the difference between below command please. Thanks!
i have file where i pattern match something like this
while (my $line = <FH>) {
if ($line =~ /To sno.*?\cA11=(.*?)\cA.*\cA76=(.*?)\cA/){
$val = $1;
if the match is found i want to loo...