You
can use single quotes : ‘[EMAIL PROTECTED]’,
or
you must use back slash with double quotes : “[EMAIL PROTECTED]”.
Remember,
when you use double quotes Perl try to
translate variables, and @ means array for Perl.
Solli
-Original
Message-
From:
[EMAIL PROTECTED]
[mailt
Please do not post messages below the signature (A line containing only
two dashes followed by a single space). Many MUAs treat the signature
special. For example mine draws the text in a light grey that is
difficult to read, and when responding it strips out the signature.
Thank you,
Randy.
__
--
hi,
i'm working with the soap::lite. i've got to interface with a c# web service that requires one parameter, but i'm getting nothing back. my code looks like the following:
use SOAP::Lite;
my $soapResponse = SOAP::Lite
-> service('http://1.2.
You might do better to make an altenation:
$keywords = join("|", @keywords);
if ( $wholefile =~ /^\s*($keywords)\s*$/mo ) { # do you want 'i' ?
rather than the loop. Worth a benchmark, but one search for multiple
matches is probably faster than multiple searches for some sized files.
You als
Craig Cardimon wrote:
I'm searching a text file for keywords. These keywords are stored in
an array. First, I read the file into a scalar variable. Then, I
search for each keyword, cycling through the array in an outer
foreach loop: foreach $keyword (@keywords)
The keywords should be in all caps a
most sites use cookies to trace logins. you'll need to save any cookies that the site sends, and return them to the server with each request.
some sites use a challenge/response authentication which basically involves the site returning a 403 error, and then your agent re-requests, sending the use
Craig Cardimon <[EMAIL PROTECTED]> wrote:
I'm searching a text file for keywords. These keywords are stored in an
array. First, I read the file into a scalar variable. Then, I search for
each keyword, cycling through the array in an outer foreach loop:
foreach $keyword (@keywords)
The keywords