| Thread | Last Post | Replies |
|
| Perl script doesnt behave well | 21 Jul 2008 07:14 GMT | 7 |
Hi, I am using perl script to handle some function of squid redirector program . Actually its working fine. But after some time , that functions goes off. That's meant VALUE-A doesnt comes in to the request. I checked the DB , it also fine.
|
| perlpacktut ... not sure what I am doing wrong while following the example.. Explanation please | 20 Jul 2008 06:34 GMT | 3 |
just trying to learn pack/unpack function in perl.. http://perldoc.perl.org/perlpacktut.html I thought i followed pretty much to the teeth from the tutorial itself and when I type them into my linux box , it didn't exactly work the way
|
| Parsing XML | 19 Jul 2008 14:01 GMT | 8 |
I would like to know if we can parse XML with regexp faster than with an MSXML or Xerces library ? Thanks Best Regards
|
| Foreach with array of hashes | 19 Jul 2008 13:01 GMT | 2 |
I am getting a syntax error with the following code: Line 10: @snmpSessions = (%snmpSession1, %snmpSession2); Line 11: foreach %snmpSession (@snmpSessions) Line 12: {
|
| how to read the formatted data from the file? | 19 Jul 2008 00:17 GMT | 8 |
There is a file created likes this: open File ">file.txt" or die $!; foreach .. <..> { printf File "%5d %11.2f\n", $data1,data2;
|
| LWP | 18 Jul 2008 15:38 GMT | 2 |
Can someone assist me in modifying the the script below to support the following: 1)define proxy server 2)the URL being accessed via LWP is protected, so I need to specify
|
| find_all_links | 18 Jul 2008 15:07 GMT | 1 |
Does anyone know details about find_all_links method of the mechanize module. Thanks and Regards, Manasi Bopardikar|s/w Engineer|Persistent SystemsLtd
|
| Extract the desired value from a regex | 18 Jul 2008 08:39 GMT | 3 |
I have a regex --- $array[3]=~/[M|T|W|TR|F]\s[M|T|W|TR|F]\s(.*?)/; I want to extract the value of expression highlighted in red.Is there any way to do it. -I tried $1 does not work.Why doesn't it work I do not understand.
|
| Get Clients Windows Logon ID | 18 Jul 2008 02:59 GMT | 21 |
Can you please advice me how to get the Clients' windows logon user name in perl? Thanks & Regards, Leo
|
| perl error... | 17 Jul 2008 18:34 GMT | 3 |
Okay perl idiot here... use: not found /usr/local/script/contrib/maildirsync.pl: 20: Syntax error: "(" unexpected (nb: "use: not found:") humm, well this is line 19-21
|
| how do you do this in one step instead of two | 17 Jul 2008 18:33 GMT | 7 |
is there way to do this in one step? push @array, ($direction, $source); push @hh, \@array push @hh \($direction,$source) doesn't seem to work.. or not the samething
|
| How can we Install Perl in Windows | 17 Jul 2008 15:00 GMT | 10 |
How can we install perl in windows system? Let me know the steps or direct me right document.. before that is it necessary to installing the IIS? Thanks,
|
| A newbie question - line number inside the script | 17 Jul 2008 09:03 GMT | 7 |
Hi list. I'm a newbie to Perl, (and to this mailing list) :) There's a task i was given, in which it is necessary to get the number of the current executing line/command - inside the script itself.
|
| Doubt in Perl CGI | 17 Jul 2008 07:58 GMT | 1 |
My Perl CGI script is working fine when i run the code in the command prompt as "perl myscript.cgi" . However when i run the same code in the browser(Internet Explorer), It is not working properly. I am using "YAML::Syck" module in my CGI Script to parse the YAML file. So i use ...
|
| Compare Excel file | 17 Jul 2008 06:01 GMT | 10 |
Is it possible to compare two excel file by using Perl? Thanks, Siva
|