The #! line is only for unix systems, you don't need it.
- Original Message -
From: "Alex Barna" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 28, 2001 6:10 PM
Subject: Re: Perl & Win 98SE
> I did that & installed Microsoft Windows Installer 1.1+ & DCOM for Windows
9
I think so too. As I recall, tr would change each letter
so tr/abc/xyz/
would change each a to x, each b to y, each c to z
I think that s/ would work more in the way you expect, so s/abc/xyz/ would
change every "abc" to "xyz"
- Original Message -
From: "Yacketta, Ronald" <[EMAIL PROTEC
Guide to Programming with CGI.pm"
website, so I think I'll try that next.
- Original Message -
From: <[EMAIL PROTECTED]>
To: "Lynn Glessner" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, August 21, 2001 9:49 AM
Subject: Re: Upload script
&
>
> However, because the educational institutions are so full of these types,
> many colleges still require Cobol to be taken if you are pursuing a CS
> degree. I suppose they think they're offering something useful that'll help
> you in today's world of computers - that by itself shows how out
I think that you just need to match the other way around to get the partial
match.
Instead of looking for the fileline within the name_passed, look for the
name_passed within the fileline.
Something like this should do the desired partial match, and be shorter and
clearer (at least to me, another
I think that the program you are looking for is perl2exe
- Original Message -
From: "Daryl J. Hoyt" <[EMAIL PROTECTED]>
To: "Beginners Perl" <[EMAIL PROTECTED]>
Sent: Thursday, July 19, 2001 10:53 AM
Subject: I'm looking for a program to make a Perl Script into a Windows .EXE
> Hi,
> I'
>
> if ($ENV{'REQUEST_METHOD') eq 'GET')
The left brace for 'REQUEST_METHOD' is curly
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I see that someone has already answered, here is another example since you
are searching.
Since I am still new, writing it that way makes more sense, is more legible
to me :)
while ($line = ) {
#do something with that line, like a substitution
$line =~ s/dog/cat/;
}
does that help? The w