Advertisement

Experts Exchange is proud to recognize the top quarterly Experts of 2008. These Experts have risen to the top, so CONGRATULATIONS!

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested Perl Solutions: 301 - 325 of 1180
 
I am running a W2K - SP4 Serverand I installed Active Perl 5.8.2 build 808. LWP was installed when Perl was installed, and I installed Crypt::SSleay (.51) from a ppm session using install http...
Hi, I want to write a function to manipulate the variable that's passed into it, but if it's an array or hash i want to do the change to each member.  is there an easy way to tell what type...
I got the following when trying to run a perl.  How to start to debug the problem?  Thanks. ksh: test.perl: cannot execute
Hi all, I would like to compare number strings (of same length) and sort out all those which differ in just one position. Is there a way in doing it with perl (using regexp or some mod...
Hi Guys! Hope you are all well :>) Guys I have the following statement: ========================================================== printf LOG "%02d%02d/%02d/%02d %02d:%02d:%02d  $_[0]\...
My array is made by n rows and 9 columns, and I need to sort the whole array with ref to the 5th column (id=4). How?
I've installed Active State Perl v5.8.7 (b.813) on my Windows XP machine.  I then downloaded five modules, unzipped them, and copied the pm files to appropriate directories under C:/Perl/lib/....
Hi, When you're using the following syntax to iterate a 2D array:     for ($it (@my2dArray)) {             for ($j = 0; $j < @$it; $j++) {         }     } I'm assuming that:   ...
I'm on a FC3 box with DBD-ODBC-1.16, DBI-1.605, unixODBC-2.2.9-1 , freetds-0.82 and perl 5.8.5.  I'm struggling on connect Perl on Linux to Microsoft SQL Server 2000.  I can successfully acces...
Hello. I processed a lot of data in Perl, and now I need to sort it. My data is in a text file called data.txt: NLLHETDSA       981.03 TQIPHLAGT       919.04 ETDSAVATA       845.86 LCA...
I want to write a script that checks a webpage for updates.  This task is complicated by these factors: (NOTE: I'm running ActivePerl 5.005_03 on win2k) 1) I'm behind a proxy that requires...
I have a Perl Script which works when Basic Authentication is used but gives Http Error 401 after the IIS Authentication Method is changed to "Integrated Windows Authentication" on Windows 200...
I want to know the easiest way, that I could write a script that parsed email and strip the mail of html and place it directly into a database.   The user fills out a form and the form gets...
Hello I am trying to access the sql server 2005 from the solaris operating system. below is the code which i am using..... while connecting to the server i am getting following error D...
Hello: I have read http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_20102970.html but I am receiving an error that the file size is too large. The error message is: cou...
Hi Experts,  I have a input file where the header of the file has columns as below. I_AUDITID(16),D_DATE(8),T_TIME(8),I_TSORDNUM(10),C_RECORDTYPE(4) I need to read from the input fil...
Hi, I need to check if DBD::SQLite package is installed or not using my perl script. As its installed than only I need to connect to Database to do the operation or try to connect to other ...
I have a script which uses Date::Manip to do some business calculations: #!/usr/bin/perl -w use Date::Manip; open(IN, "L2IncidentTracking.txt")||die "Cannot open infile.\n"; while(...
hi when insert new record, i need to check is the record exist, if  No only insert, can anyone help , why the following not running ? $dbh->query("SELECT domain FROM stat WHERE doma...
i'm writing a program in perl to populate a database.  the code seems to be the way it should, but when i run it, the script does not create a new table.  it drops the table but doesn't create...
how do i reset a hash table so it has nothing in it (no keys etc)...................
Hi, I need a perl script which reads the configuration file in the following format config.ini [DEV] <Key1>=<Value1> <Key2>=<Value2> .... [QA] <Key1>=<Value1> <Key2>=<Value2> ....
I'd like to resize images proportionally. so i want it to grab the width and hight and for example shrink the width to 150 and the height to shrink proportionally to the width. This is all...
hi. i have two perl script which called in shell script. i want to debug, script flow & variable used in perl. i have unix machine. give me syntax or solution for this question. Tha...
I have this script from adam314 to view a https page but the page requires a userid and password, which i have.  How can I change the script to insert userid and password? use Net::SSLeay...