Message-ID: <[EMAIL PROTECTED]>
Date: Thu, 19 Jan 2006 10:45:18 -0500
From: Chas Owens <[EMAIL PROTECTED]>
To: beginners@perl.org
Subject: Re: Recommend debugger...
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
On 1/19/06, SG Edwards <[
- Original Message -
From: "Beau E. Cox" <[EMAIL PROTECTED]>
To: "Bernard Kenik" <[EMAIL PROTECTED]>
Cc: "Beginners Perl"
Sent: Friday, October 14, 2005 1:29 PM
Subject: Re: Re: using XS for calling exported methods from a DLL
Hi Bernard et
- Original Message -
Sent: Friday, October 14, 2005 12:24 PM
If you want the complete module to copy/study/etc., let me know and I will
send it to you off-list.
Aloha => Beau;
[EMAIL PROTECTED]
2005-10-14
Please send it to me also.
I am trying to use a function from a dll. It has
- Original Message -
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="_=_NextPart_001_01C5C99A.9531A0CC"
Subject: RE: Extracting Upper case letter from a variable
Date: Wed, 5 Oct 2005 12:50:21 +0200
Message-ID: <[EMAIL PROTECTED]>
From: "BERTHOLD Jean" <[EMAIL
/]*" could be replaced with ".*" in your regex and still
do the same thing...
- Original Message -
From: "Chris Devers" <[EMAIL PROTECTED]>
To: "Bernard Kenik" <[EMAIL PROTECTED]>
Cc: "Perl Beginners List" <[EMAIL PROTECTED]>
Sent: Monday, Octo
This code should do it.
my $List = " axyzb cxyzd ";
my @Words = split(' ', $List);
print "@Words\n";
my $Word;
my @xyz;
foreach $Word (@Words) {
push @xyz, $Word if $Word =~ /.*xyz.*/;
}
print "@xyz";
"Kevin Zhang" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> Tha
use what the message states;
you are using an uninitialize string.
example
my $string;# $string is declared but not initialized!
so any operation you do on that string (except an assignment) with produce
the error message.
- Original Message -
From: "Devon Young" <[EMAIL PROTECTED