Re: Recommend debugger...

2006-01-20 Thread Bernard Kenik
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

Re: using XS for calling exported methods from a DLL

2005-10-14 Thread Bernard Kenik
- 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

Re: Re: using XS for calling exported methods from a DLL

2005-10-14 Thread Bernard Kenik
- Original Message - From: Beau E. Cox [EMAIL PROTECTED] To: Bernard Kenik [EMAIL PROTECTED] Cc: Beginners Perl beginners@perl.org Sent: Friday, October 14, 2005 1:29 PM Subject: Re: Re: using XS for calling exported methods from a DLL Hi Bernard et. al. - At 2005-10-14, 07:01:39 you

RE: Extracting Upper case letter from a variable

2005-10-05 Thread Bernard Kenik
- 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

Re: how the print the first 7 letter of file name

2004-10-25 Thread Bernard Kenik
- From: Chris Devers [EMAIL PROTECTED] To: Bernard Kenik [EMAIL PROTECTED] Cc: Perl Beginners List [EMAIL PROTECTED] Sent: Monday, October 25, 2004 12:30 AM Subject: RE: how the print the first 7 letter of file name On Sun, 24 Oct 2004, Bernard Kenik wrote: The part that puzzled me was [^/] .. so I

Re: a simple question

2004-06-16 Thread Bernard Kenik
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] Thanks in

Re: Use of uninitialized value in concatenation (.) or string at...

2003-09-08 Thread Bernard Kenik
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]