Re: Trying to re-arrange output of email with a list of items

2007-01-25 Thread Mumia W.
On 01/25/2007 05:36 PM, Wagner, David --- Senior Programmer Analyst --- WGO wrote: I currently have data for group1 which has x entries associated with it. As I currently put out the email, the data is going down the page. Well with the data being displayed, I thought why not have all on

Trying to re-arrange output of email with a list of items

2007-01-25 Thread Wagner, David --- Senior Programmer Analyst --- WGO
I currently have data for group1 which has x entries associated with it. As I currently put out the email, the data is going down the page. Well with the data being displayed, I thought why not have all on same line like following: EE Eenural 148ED Easuern 185NO Noruhe

Re: parsing XML

2007-01-25 Thread Kevin Viel
From: Kevin Viel <[EMAIL PROTECTED]> I have obtain results of a query in XML format: http://www.ncbi.nlm.nih.gov/entrez/query/DTD/eSummary_041029.dtd";> 4609 MYC v-myc myelocytomatosis viral oncogene homolog (avian) Homo sapiens 0 0

Re: Sending mail

2007-01-25 Thread Jenda Krynicky
Date sent: Wed, 24 Jan 2007 21:54:47 -0500 From: "M. Lewis" <[EMAIL PROTECTED]> To: beginners@perl.org Subject:Sending mail > > I've used MIME::Lite for the mail tasks I've had up till now and it > has worked very well. Now I need

Re: parsing XML

2007-01-25 Thread Jenda Krynicky
From: Kevin Viel <[EMAIL PROTECTED]> > I have obtain results of a query in XML format: > > > October 2004//EN" > "http://www.ncbi.nlm.nih.gov/entrez/query/DTD/eSummary_041029.dtd";> > > 4609 > MYC > v-myc myelocytomatosis > > viral oncogene homolog (avian)

Re: substituting one variable, assign to another

2007-01-25 Thread Rob Dixon
Kevin Viel wrote: > How can take the value of one variable, substitute say its suffix, and assign it to another? I have only figured out how to do it using an intermediate variable: if ( $code eq "" ){ my $base = $out ; $base =~ s/\.out$/\.cde/ ; $code = $base ; } Surely: if ($code e

Re: Video and perl

2007-01-25 Thread Herman Gerritsen
Hi there, I got the program almost working... Anyway i could capture frames and data at the same time. Just my webcam was not very reliable... In the meantime a colleague came up with a different solution... and we tested it and it works. So I stopped tring this. Anyway your help was appreciated,

Re: Help, using script to edit router config (entering different modes automatically)

2007-01-25 Thread zackrspv
On Oct 27 2006, 1:32 am, [EMAIL PROTECTED] (Bjorge Solli) wrote: > On Friday 27 October 2006 09:23, Michael Alipio wrote: > > > > > > > Hi, > > > Suppose I have an appliance, it's not cisco but the process of updating > > configuration is almost the same. > > > 1. First you log-in either viasshor

Re: trouble with list context assignment for substitution inside File::Find &wanted function

2007-01-25 Thread D. Bolliger
Michael Alipio am Mittwoch, 24. Januar 2007 04:21: > From: John W. Krahn <[EMAIL PROTECTED]> > Sent: Wednesday, January 24, 2007 10:57:51 AM > > Yes, the substitution operator (s///) returns true (1) or false ('') in > > either list or scalar context. To do want you want you have to do the > > as