From: "Mike D" <mikedpan@...> ... use HTML::TokeParser; my $frequency; my $p = HTML::TokeParser->new("in.html") || die "Can't open: $!"; while...
2149
Charles K. Clarkson
c_clarkson@...
Mar 2, 2001 6:23 am
From: "Damien Carbery" <daymobrew@...> ... That's looks good to me Damien, but you have an extra 's' in there. I used a | delimiter to avoid those...
2150
tim
timhoustontx@...
Mar 2, 2001 1:35 pm
I need suggestions on how to do effecient, secure IPC between PERL and another application. Any ideas??? -tim mailto:timhoustontx@......
2151
Gail Buffington
gbuffing@...
Mar 2, 2001 1:50 pm
Hello Doug, Thank you for your response - I am going to try this. Gail ... you ... of...
2152
Gail Buffington
gbuffing@...
Mar 2, 2001 1:52 pm
Hello Damien. Thank you for your response. I am going to look into this. Gail...
2153
tomroth@...
Mar 2, 2001 1:58 pm
I have a script that uses sendmail to send out emails (of course) and I've been able to make it so that my email address appears in the "From:" field so if the...
2154
Damien Carbery
daymobrew@...
Mar 2, 2001 5:52 pm
Today's (Friday 2nd) Perl.com Recipe of the Day talks about running external programs. It is from "Perl Cookbook" ...
2155
Damien Carbery
daymobrew@...
Mar 2, 2001 5:54 pm
Maybe this is correct sendmail/mail server behaviour. If you can use another email program (Netscape Messenger etc) and set the "From" and "Return-Path"...
2156
tomroth@...
Mar 2, 2001 6:29 pm
I was afraid someone was going to say that. I did perform a test from Netscape Messenger and when sending from there my email address was in the "Return-Path"...
2157
Damien Carbery
daymobrew@...
Mar 2, 2001 7:39 pm
Next I suggest running sendmail interactively, without the CGI script. Maybe you could cc yourself on the mail to confirm the Return-Path setting. You could...
2158
xerus@...
Mar 2, 2001 10:02 pm
Hi all, Currently we send automated email via Oracle procedures and or PERL scripts to our customers. Some of it gets bounced back for any number of reasons....
2159
Damien Carbery
daymobrew@...
Mar 3, 2001 12:11 am
What's the name of the mailing list software? Majordoro or something like that. Maybe you could let this application handle mail delivered to this specific...
2160
Doug Wells
dougawells@...
Mar 3, 2001 1:30 am
It's majordomo. ... __________________________________________________ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. ...
2161
Charles K. Clarkson
c_clarkson@...
Mar 3, 2001 2:23 pm
From: "Douglas Wade" <dwade@...> ... my $prev = ''; while (<>) { print "<t=,2>\n" if $prev =~ /^<t\+,1>/ && /^<t=,3>/; print; $prev = $_; } HTH, ...
2162
rb@...
Mar 3, 2001 8:30 pm
Hi, This script runs on my NT4.0 workstation SP6 machine (using PWS). Now I have moved the script to a win2000 machine, and it does not save my file anymore...
2163
Aram Mirzadeh
awm@...
Mar 3, 2001 9:54 pm
Greetings, I'm trying to convert some old code that is no longer working (using Sybase database and Sylib modules) to a new MySQL database. Because the old db...
2164
Kul
aka.Kul@...
Mar 4, 2001 1:26 am
... Hi tom, What paremeters you using when you invoke sendmail ? Have a quick vist to http://www.sendmail.org/ they will have the upto date list (i dont), but...
2165
Kul
aka.Kul@...
Mar 4, 2001 1:27 am
... Hi Jon, Sounds like what you want is not majordomo, (majordomo is not much cop at this sort of stuff - extract specifics and writing to databases) but a...
2166
antisocial@...
Mar 4, 2001 2:08 am
THis is my code. Im trying to get a hold on filehandeling. I get the stranges output from this code. Im using the latest release of Active Perl. use strict; ...
2167
y_jim Y
y_jim54@...
Mar 4, 2001 4:02 am
Hi, I am trying to interpret the expression down below. Like matching pattern, in what order it starts and contiues?. "abcde" =~ / (abd | abc) (df | d | de)...
2168
Doug Wells
dougawells@...
Mar 4, 2001 4:27 am
You don't mention what the strange output you are getting... but one problem I see is that you open FILE for output (FILE, ">data.txt"), then try to get input ...
2169
Douglas Wade
dwade@...
Mar 4, 2001 3:24 pm
Beautiful... That works and it nice! Thanks for the help... Douglas --...
2170
y_jim Y
y_jim54@...
Mar 4, 2001 7:55 pm
"abcde" =~ / (abd | abc) (df | d | de) /; I am not sure how this works. _________________________________________________________________ Get your FREE...
2171
Andrew Johnson
andrew-johnson@...
Mar 4, 2001 8:17 pm
... It isn't going to work at all, in the sense of successfully matching that string because of the spaces in the regex -- you could use the /x modifier to...
2172
y_jim Y
y_jim54@...
Mar 4, 2001 10:18 pm
I thought that would work like start matching a in the string, then, ab and abc,.... , e,..and cde,..or de.... in the string,... to regex. J ... ...
2173
antisocial@...
Mar 4, 2001 11:01 pm
Hi again... What Im getting is the actual sourcecode as output...and if I check the data.txt after execution I have the sourcecode in the file =). I believe...
2174
bobzim@...
Mar 5, 2001 12:20 am
If I have a variable with a complete URL in it, but I am not sure if there are 4, 3 or 2 nodes (it could be x.com or a.b.c.com). I would like to pull out the...
2175
Damien Carbery
daymobrew@...
Mar 5, 2001 3:41 am
This code may get you started: #!/usr/local/bin/perl -w use strict; my $URL = "http://www.yahoo.com/help/index.html"; # Split on forward slashes. my $Server =...
2176
ponnambalam.ma@...
Mar 5, 2001 6:55 am
Dear friends, please let me to know the possible way to blink the text using the FORMAT statenment. I am using the following code, but it could't work, please...
2177
Stefan Jahnke
stefan.jahnke@...
Mar 5, 2001 7:57 am
Hi, I'm trying to build a small Tk-GUI to "remote-control" Oracle's SQL*PLUS. The idea is to have open one pipe as a filehandle in order to write to a named...