match time interval

2004-03-22 Thread Ralf Schaa
onsider a new approach at all. Thanks, -Ralf -- Ralf Schaa Institut fuer Geophysik und Meteorologie Universitaet zu Koeln Zuelpicher Str. 49a Germany, D-50923 Koeln Phone: +49 (0)221 470-4035 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http:

Re: extracting data from table embedded in Word document

2004-03-21 Thread Ralf Schaa
Andrew Gaffney wrote: I'm writing a web-based client information system for a lawyer. His current client list is in a 137 page Word document with an embedded table. I can get it into a somewhat usable format by copying the entire table, pasting into Excel, and saving as tab delimeted text, but

Re: importing to excel file..

2004-03-18 Thread Ralf Schaa
Hiremath Arun wrote: Anyone help me in importing data from a text file in to a excel.. maybe you want to have a look at this: Spreadsheet::WriteExcel i cannot tell you if it does what you want, but the 'twinsister' Spreadsheet::ParseExcel::Simple works just fine and it's both a kind of cross

Re: can somebody tell me what this means

2004-03-11 Thread Ralf Schaa
Remo Sanges wrote: $target = (@digits % 2) ? ($digits[int(@digits/2)]) : ([EMAIL PROTECTED]/2-1]); if ($target = (@digits % 2)) { ($digits[int(@digits/2)]); } else { ([EMAIL PROTECTED]/2-1]); } isn't it like this? condition is (@digits % 2) : when the modulo is 1 then $target= ($digits

Re: can somebody tell me what this means

2004-03-11 Thread Ralf Schaa
sam lehman wrote: i got his code from a program i found, and i was wondering that the ? and the : are for? $target = (@digits % 2) ? ($digits[int(@digits/2)]) : ([EMAIL PROTECTED]/2-1]); conditional statement (with lower priority than an 'if-construct' ?): if (@digits % 2) { $target = ($dig

Re: what is similar to shell `du' in perl

2004-03-04 Thread Ralf Schaa
hi there, i helped myself with : $volsize = `du -ms $item` with the backticks-operator (``) the system-own function is used and output is written in the variable $volsize - check backtick-operator. works also on windows when the unxutils are installed (sourceforge.net) cheers, -ralf Harry Putna

packages and variables

2004-03-04 Thread Ralf Schaa
Cheers all, i am doing my first steps with writing packages/modules and of course there are problems: the module holds a variable in a subroutine. this variable i like to pass to the callerprogram, so it is in the @EXPORT_OK and even in the @EXPORT. So far so good, i thought! but nothing happ