Thanks a ton to all.
On Sat, 24 Jan 2004, drieux wrote:
>
> On Jan 23, 2004, at 5:24 PM, wolf blaum wrote:
>
> > For Quality purpouses, Ajey Kulkarni 's mail on Saturday 24 January
> > 2004 17:52
> > may have been monitored or recorded as:
> >
> >> i would like to quickly append a string to a
On Jan 23, 2004, at 5:24 PM, wolf blaum wrote:
For Quality purpouses, Ajey Kulkarni 's mail on Saturday 24 January
2004 17:52
may have been monitored or recorded as:
i would like to quickly append a string to a variable.
open NEWFH, "> $filename.new" or die "new procmailrc err";
where $filename
wolf blaum wrote:
For Quality purpouses, Ajey Kulkarni 's mail on Saturday 24 January 2004 17:52
may have been monitored or recorded as:
hi,.
hi
i would like to quickly append a string to a variable.
open NEWFH, "> $filename.new" or die "new procmailrc err";
where $filename has /tmp/xyz
Anyth
For Quality purpouses, Ajey Kulkarni 's mail on Saturday 24 January 2004 17:52
may have been monitored or recorded as:
> hi,.
hi
> i would like to quickly append a string to a variable.
> open NEWFH, "> $filename.new" or die "new procmailrc err";
> where $filename has /tmp/xyz
>
> Anything reall
From: "Miguel Angel Morales" <[EMAIL PROTECTED]>
> Thank you very much Jenda, I used the code
>
> > $hex = unpack('H*', $servidor);
> > $hex =~ s/(..)/$1 /g;
> > print $hex;
>
> you send me and at the end of the register appears the 0D 0A hex
> characters, so this should be the problem. How can I
able?
Thanks again,
Miguel Angel
- Original Message -
From: "Jenda Krynicky" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 19, 2003 1:10 PM
Subject: Re: string concatenation
> From: "Miguel Angel Morales" <[EMAIL PROTECTED]>
> >
From: "Miguel Angel Morales" <[EMAIL PROTECTED]>
> Hi All! I have a problem concatenating strings and I will be very
> grateful if you could help me because I'm going crazy:
>
> I'm using the telnet library for connecting to a router and executing
> the following command:
>
> $t->cmd("ip $nombre
On May 17, Peter Cornelius said:
>$returnCode eq "o.k." ? $subject .= " -OK-" : $subject .= " -FAILED-";
You're being bitten by precedence. ?: is stronger than .=, so your code
is like:
($foo == 1 ? $bar .= "this" : $bar) .= "that";
Which means that if $foo is 1, $bar gets "thisthat" tacked