very strange conditional failure
 (95 Views)
I just finished debugging a very strange problem, and was wondering if
any of you had ever seen it before. My code is very long, so I will only
post the interesting parts.
ok, so using DBD::Sybase and some other ...
|
perl 5.8.2/3 - thread started by a thread
 (155 Views)
,
I'm a perl beginner. I created a piece of code starting a first thread which
in turn creates a second thread. Unfortunately the creation of the second
thread hangs the first one. Is there anybody who knows what's ...
|
Read a html file, extract email addresses?
 (313 Views)
I have searched without success for a simple script that can read any
text html file and extract the email addresses from it. I am not
interested in spamming people. I play a sport that requires me to
email people ...
|
Zip file processing without recompiling PHP
 (307 Views)
I am trying to create an OsCommerce plugin that parses a number of
files and adds them to the catalog.
I need some method of transferring the files to be parsed to the
server with OsC.
Ideally, I would like ...
|
[comp.lang.perl.moderated] Welcome - read this first!
 (165 Views)
Archive-Name: perl-faq/moderated/welcome
Comp-lang-perl-moderated-archive-name: welcome
Posting-Frequency: weekly
Version: $Id: FAQ,v 1.49 2003/08/19 18:50:04 gbacon Exp $
URL: http://www.plover.com/clpm/FAQ
Maintainer: Greg Bacon
Copyright-Notice: see Section 14
[ A recent copy of this document can be obtained via anonymous FTP as
rtfm.mit.edu:/pub/faqs/perl-faq/moderated/welcome. ...
|
de-references
 (98 Views)
Perl-folks,
Got a question that I hope someone can answer. I often use hashs like
structures and they sometimes contain references to other hashs or arrays.
My question is what is the best way to de-reference the internal hash or
...
|
Destroy cirular structure when last external ref goes
 (107 Views)
Something I come accross often in Perl and for which I have no
satisfactory solution is this..
I have a whole lot of Perl thingys (arrays, scalars, hashes) some of
which are blessed all referencing each other in some complex ...
|
[comp.lang.perl.moderated] Welcome - read this first!
 (147 Views)
Archive-Name: perl-faq/moderated/welcome
Comp-lang-perl-moderated-archive-name: welcome
Posting-Frequency: weekly
Version: $Id: FAQ,v 1.49 2003/08/19 18:50:04 gbacon Exp $
URL: http://www.plover.com/clpm/FAQ
Maintainer: Greg Bacon
Copyright-Notice: see Section 14
[ A recent copy of this document can be obtained via anonymous FTP as
rtfm.mit.edu:/pub/faqs/perl-faq/moderated/welcome. ...
|
h2xs more modern layout and multiple related modules
 (156 Views)
I appreciate parts of the "more modern layout" which the 5.8.1 version
of h2xs now produces. However, in the past one could type "h2xs -X -n
My::Obj" and then type "h2xs -X -n My::Obj::SubObj" to create the
stubs for two ...
|
glob and regex
 (122 Views)
I have a problem using regular expresions and the glob operator.
I want to get files with a specific name format from a directory using
glob. The regular expresion I use to match the name format is
/[A-Za-z]{2}_\w{2,5}/
Any ...
|
Phone number regular expression...
 (187 Views)
!
First, I appologize if this posting isn't proper "netiquette" for this
group.
I've been working with perl for almost 2 years now. However, my regular
expression knowledge is pretty limited. I wrote the following expression to
take (hopefully) ...
|
strange replacement of . and , with octal counterpart
 (111 Views)
The following code produces fine result when everything is hard wired
but replaces '.' and ',' with there octal counterparts when the
variables are passed to it. Can't figure out why. I would appreciate
if anyone could shed some light ...
|
Bidirectional Win32 client
 (94 Views)
The Perl Cookbook Bidirectional TCP client does not work in Win32
ActivePerl. Does anybody have a fix for this or can recommend me an example
of a working Win32 client...
|
concatenate files recursively in win32
 (329 Views)
I admit it. I'm a newbie...
I want to concatenate a series of text files by recursively going down a
folder hierarchy. the files have the same extension (*.txt) and I'm
running WinXP Home with ActiveState Perl v5.6.1
Any ...
|
SOAP:Lite Limitations re: https??
 (93 Views)
The Following Perl Works:
use strict;
use warnings;
use SOAP::Lite;
my $soap = SOAP::Lite ->
service('http://apniurdu.com/SOAP/Urdu2.wsdl');
However The Following Perl Gives an error:
use strict;
use warnings;
use SOAP::Lite;
my $soap = SOAP::Lite ->
service('https://certnexisgw.lexis-nexis.com/rs/soap/rmsoap.WSDL');
WHY
The error is:
"Service ...
|
posix vs perl regular expressions
 (143 Views)
I don't know if this is the right place to ask this, but -
what's the difference between posix and perl regular expressions
A good example is "aa|bb". Will this match "aa" or "ab" in perl and
posix
And ...
|
|