test

2004-08-12 Thread Tim McGeary
I haven't received anything from this list in a couple days. Just wanted to send a test. Tim -- Tim McGeary Senior Library Systems Specialist Lehigh University 610-758-4998 [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

awk like question

2004-08-12 Thread DBSMITH
All, wasn't sure if this was received b/c I got a reurne to sender error. How can I print certain fields delimited by ' '? In awk I would write awk '{print $1, $6}' filename Here is an out file that I want to grab data from : 04/29/04 11:00:28 [ 6687:ebexpire, [EMAIL PROTECTED] E00796 9840

How to read data from and Excel File

2004-08-12 Thread jason corbett
Do I need to have a special module to open/read an Excel spreadsheet, parse it, etc.? I am trying to figure out if one is needed and what module is recommended. I went on CPAN and I saw SQL Parser, but I am not sure if this is best method. Please advise. JC

Splitting colon delimited file in sub

2004-08-12 Thread William Paoli
What is this doing? am I on the right track? I want to populate this into a hash after splitting it: sub data_file{ open FILE, "colon-delimted.txt"; while (my $line = ) { $line = ($driver,$sponsor,$owner,$chief,$car,$bio,$team) = split /:/, @_; } } _

Re: Web Application with PERL or ASP.NET

2004-08-12 Thread perl.org
On Tue, 10 Aug 2004 12:36:30 -0700 (PDT), Joe Echavarria wrote > Hi there, > > The company i work is considering two tools for the > web version of a loan system. I need to prove that > perl is better that ASP.NET for the project. Can > anyone help me ?, is posible with perl have controls > ?,

Re: COMPLEX ARRAY STRUCTURE

2004-08-12 Thread Luis Daniel Lucio Quiroz
Thks, Your first solution help me, I do a hash from anonymous array, then I modified and return to a anonymous array and ldapadd works well. thsks. LD El Mar 10 Ago 2004 07:12, Ramprasad A Padmanabhan escribió: > Luis Daniel Lucio Quiroz wrote: > >You are wrong, > > > >I need some more flexibl

using tie on a hash of anonymous arrays

2004-08-12 Thread Rob Benton
Is this possible? I know what I have below won't work. == use DB_File; my %hash; tie(%hash, "DB_File", undef, O_RDWR|O_CREAT, 0640, $DB_BTREE) or die $hash{1} = [ 2, 3, 4 ]; print "@{$hash{1}}\n"; untie(%newhash);