Re: Text search engine

2008-08-21 Thread Joshua Hoblitt
It hasn't had a release for a few years either but I've successfully used Plucene to build a search engine for inhouse mailing lists. http://search.cpan.org/dist/Plucene/ -J -- On Wed, Aug 20, 2008 at 09:46:42PM +0100, Dermot wrote: > Hi, > > This is a slighty OT query. > > I am looking for a

Re: Multiline comment in Perl

2008-05-21 Thread Joshua Hoblitt
On Tue, May 20, 2008 at 07:40:38PM -0400, Robert Hicks wrote: > Cheating...but: > > http://search.cpan.org/~kane/Acme-Comment-1.02/lib/Acme/Comment.pm and dangerous as it's implemented with source filters which can have some "interesting" interactions. -J -- -- To unsubscribe, e-mail: [EMAIL

Re: How do I find the key of a specific hash element?

2008-05-20 Thread Joshua Hoblitt
On Mon, May 19, 2008 at 06:51:17PM -0500, Wagner, David --- Senior Programmer Analyst --- WGO wrote: > > -Original Message- > > From: jshock [mailto:[EMAIL PROTECTED] > > Sent: Monday, May 19, 2008 07:20 > > To: beginners@perl.org > > Subject: How do I find the key of a specific hash elem

Re: another help on input record separator clarity please

2008-05-03 Thread Joshua Hoblitt
Hi Richard, Your right, that won't actually work. I wasn't paying very close attention was I? It'd have to be something like this to actually work: my ($fgh) = $_ =~ /fgh\s+(\S+)/; -J -- On Fri, May 02, 2008 at 06:26:52PM -0400, Richard Lee wrote: > Joshua Hoblitt

Re: another help on input record separator clarity please

2008-05-02 Thread Joshua Hoblitt
Richard, The unitalized warnings are probably coming from one or more of $fgh, $ijk, $lmk being undefined because the regex failed to match anything. You can test this by trying to print the values of these variables. They are probably undefinately because the record seperator is being set lexic

Re: Help really needed in this script: error: Prematue end of script header

2003-03-04 Thread Joshua Hoblitt
Mel, I agree with the follow up posting on beginners that says this script should not be run as a CGI. However, just as an FYI, that particular error was being generated by Apache because you weren't outputting an HTTP content type. On another issue I see that you cross posted this message acr

Re: Adult content filter in perl

2002-09-23 Thread Joshua Hoblitt
Steve, You might want to take a look at Mail::Audit and Mail::SpamAssassin. SpamAssassin seems to work reasonable well but there are will always be a few false positives. On the other hand if you want to re-invent the w to learn something you might want to think about using just Mail::A