Re: [Perl-unix-users] Email Address Validation

2006-01-16 Thread Bill Platt
: Bill Platt wrote: I am trying to validate email addresses. I have the following code which succeeds in most cases: if ($in{email} !~ /[EMAIL PROTECTED]/i) If the username part of the email address contains either a "." or a "-", this code fails. Can you tell me why it

[Perl-unix-users] Email Address Validation

2006-01-16 Thread Bill Platt
ow I could change it to make it work for me? Thanks, Bill Platt ___ Perl-Unix-Users mailing list Perl-Unix-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: [Perl-unix-users] More Cookie Issues

2005-11-04 Thread Bill Platt
things. 1. I seem to have to use print "Set-Cookie"; instead of print "$Cookie_html". Using the second would not work, using the first did. 2. Too many browsers, and not enough realization. I was looking for an IE cookie while running Firefox. :( Thank you for your assista

[Perl-unix-users] More Cookie Issues

2005-11-04 Thread Bill Platt
d loading the found cookie to my browser window. Both show no cookie. Is there anyone available that could advise me in getting this to work correctly? Thank you. Bill Platt ___ Perl-Unix-Users mailing list Perl-Unix-Users@lists

[Perl-unix-users] Cookies advice

2005-11-03 Thread Bill Platt
way: &setCookie("name1", "value1", "name2", "value2", "name3", "value3", "name4", "value4", $expDate, $path, $domain); Or, am I to gather that if I want to set up four values into cookies for my site, that I will need

Re: [Perl-unix-users] Changing $_ Output - Unknown Reason

2005-10-31 Thread Bill Platt
That did the trick. Thanks. Bill $Bill Luebkert wrote: Bill Platt wrote: Hello, I have included a section of code below that is driving me nuts. If I don't run the Substitution operations, then I can successfully extract the URL and the imbedded anchor text from $parsed

[Perl-unix-users] Re: Changing $_ Output - Unknown Reason

2005-10-31 Thread Bill Platt
match[5]"; Bill [EMAIL PROTECTED] wrote: I'd copy off $_ to a variable at the very beginning of a subroutine and only use it within a loop, otherwise consider a variable. I don't see why you couldn't shift to a variable instead. - Original Message - From: B

[Perl-unix-users] Changing $_ Output - Unknown Reason

2005-10-31 Thread Bill Platt
x; print "0=$urlmatch[0]1=$urlmatch[1]2=$urlmatch[2]"; print "3=$urlmatch[3]4=$urlmatch[4]5=$urlmatch[5]"; print "s0=$0s1=$1s2=$2s3=$3s4=$4s5=$5"; print "$_$parsed_html"; } Thank you, Bill Platt ___ Perl-Unix-Users mailing list Perl-Unix-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: [Perl-unix-users] Saving Files without data loss

2003-11-17 Thread Bill Platt
Lee, I am not setting a length to the textarea at all. Here is the exact specs: *textarea name=save_text cols=90 rows=22* I am not aware what specs that NS7.1 might be applying to this form. It is a shame since I have always preferred using NS over IE. Bill Platt Lee Goddard wrote: Just a wild

Re: [Perl-unix-users] Saving Files without data loss

2003-11-17 Thread Bill Platt
the HTML. Perhaps there are members of the NS higher powers lurking in this list. If so, I can duplicate the error on a regular basis. Bill Platt Bill Platt wrote: Here is some additional information. I have been doing some troubleshooting and have made a discovery about the nature of this problem

[Perl-unix-users] Saving Files without data loss

2003-11-16 Thread Bill Platt
gle quotes, ampersands, etc. to the longhand equivelants, such as "e; and & I thought I would build my file editor to get past this common problem. Unfortunately, I am receiving the same results from my own software. Has anyone seen this problem? And does anyone know a possible solution for this i

[Perl-unix-users] Sending Content-Length via Perl POST

2002-04-14 Thread Bill Platt
I need to know to make a determination of the Content-Length and how to deliver it through the standard use HTTP::Request::Common qw/POST/ module? Thank you, Bill Platt ___ Perl-Unix-Users mailing list [EMAIL PROTECTED] To unsubscribe: http

Re: [Perl-unix-users] Limitations of Perl with Mysql??

2001-10-19 Thread Bill Platt
the 25,000 words represents the average input with a top potential of around 75,000 words in the extreme. Thanks for your assistance. Bill Platt Edward Moon wrote: > > Can you give us more details on what you want to do? > > Do you want to stuff all 25,000 words into one field?

[Perl-unix-users] Limitations of Perl with Mysql??

2001-10-19 Thread Bill Platt
concerning passing chunks of this much data to the Mysql database? I have wondered if I need to send all of the text box data to temporary files for later filing in the mysql database? Is this a viable solution? Or am I just imagining a problem that does not exist? Thanks, Bill Platt

[Perl-unix-users] Password Security

2001-09-19 Thread Bill Platt
finding what we are looking for. Thanks, Bill Platt ___ Perl-Unix-Users mailing list. To unsubscribe go to http://listserv.ActiveState.com/mailman/subscribe/perl-unix-users

[Perl-unix-users] Capturing Default Addresses

2001-09-01 Thread Bill Platt
sitors. Thanks. Bill Platt ___ Perl-Unix-Users mailing list. To unsubscribe go to http://listserv.ActiveState.com/mailman/subscribe/perl-unix-users

[Perl-unix-users] Valid Email Check

2001-08-21 Thread Bill Platt
more experience. Could someone tip me off to what I am needing to look for? Thank you. Bill Platt ___ Perl-Unix-Users mailing list. To unsubscribe go to http://listserv.ActiveState.com/mailman/subscribe/perl-unix-users

[Perl-unix-users] checking a file for an existing string

2001-08-19 Thread Bill Platt
addresses before adding the email address to the list. Could someone explain to me in kindergarten terms how and why I do each step to make this happen? Thanks in advance. Bill Platt P.S. Below is the code that I have written to accomplish this, and while it seems to work just fine, something in

Re: [Perl-unix-users] Re: Perl Newbie - chmod

2001-07-28 Thread Bill Platt
, do you have any suggestions you may offer to me? Bill Platt $Bill Luebkert wrote: > > Bill Platt wrote: > > > > Hello Everyone, > > > > I am sure that my pure ignorance is starting to show. Visual > > Basic I do decent with. At times, I feel like I am re

[Perl-unix-users] Re: Perl Newbie - chmod

2001-07-28 Thread Bill Platt
within the script at all. I am on Perl 5 if that is of any consequence. Thank you for any aid you might offer. P.S. I read the security faq. Thanks for pointing that out. Bill Platt -- _

Re: [Perl-unix-users] Perl Newbie - Creating new files

2001-07-26 Thread Bill Platt
Bill, Thank you. I cannot tell you how much joy I experienced when I followed your tip and it worked. Thanks again. Bill Platt - Internet Musketeers, Inc. Deputy Director for Plans, Operations, Marketing and Systems http://GhostArticles.com (Promotional Article Creation

[Perl-unix-users] Perl Newbie - Creating new files

2001-07-26 Thread Bill Platt
to do it? I know how to overwrite or append an existing file, I just do not know how to make a new one. Bill Platt - Internet Musketeers, Inc. Deputy Director for Plans, Operations, Marketing and Systems http://GhostArticles.com (Promotional Article Cre