> Lundgren, Scott wrote:
> > Hey All,
> >
> > I've had time to revisit my issue with Crypt::SSLeay & IIS using the
> > suggestions from this mailing list. In short, none of them
> solved it.
> > The problem I'm having is Crypt::SSLeay is installed on IIS
> 6.0 but the
> > script I'm using doesn'
Lundgren, Scott wrote:
Hey All,
I've had time to revisit my issue with Crypt::SSLeay & IIS using the
suggestions from this mailing list. In short, none of them solved it.
The problem I'm having is Crypt::SSLeay is installed on IIS 6.0 but the
script I'm using doesn't believe that the module is inst
Hello there
I recently compiled a script that I use on IIS. the script works, but as a
binary it does not.
the binary is compiled with the exe flag set to "cgi", there for the executable
name is eg. "myexe.cgi"
when i enter the url, nothing happens, though there is no IIS web page error
message.
On Thu, 27 Jan 2005, Lundgren, Scott wrote:
> Hey All,
>
> I've had time to revisit my issue with Crypt::SSLeay & IIS
> using the suggestions from this mailing list. In short,
> none of them solved it. The problem I'm having is
> Crypt::SSLeay is installed on IIS 6.0 but the script I'm
> using doe
hello all,
I have a perl server/java client problem
I need to create a perl socket server, and a java applet socket client.
I know how to do sockets, and encryption on client/server perl is easy.all i
do is encrypt the string on the before i print to sockets on one end, and
decrypt the strin
Hey All,
I've had time to revisit my issue with Crypt::SSLeay & IIS using the
suggestions from this mailing list. In short, none of them solved it.
The problem I'm having is Crypt::SSLeay is installed on IIS 6.0 but the
script I'm using doesn't believe that the module is installed. I'd
really like
Yes, my brain was asleep today an forgot to throw in the anchors. The
{0,2} construct is a good idea but not required in this instance as the
field cannot exceed 10-characters. Thanks for everyone's help with this.
-Original Message-
From: Lloyd Sartor [mailto:[EMAIL PROTECTED]
Sent: Th
The reason that "200412" matches in your first regex is that the first four characters match the pattern (as expected) but there is nothing in the regex that causes the additional characters "12" to result in a mismatch; the regex engine simply ignores them. Adding "$" to the regex (as Mike has d
Title: RE: Regex Help
Okay, this is amazingly cloddish, but it does work and may point out where some of your regexes are going wrong. Whenever I have difficulty, I try to simplify it down and then analyze.
@strings = qw/ 2004 200412 20041201 2004-12 2004-12-01/;
for (@strings){
if (/^\d
Dirk,
I'm not a regex pro, but this worked for me: /^\d{4}(-\d{2}){0,2}$/
I tested it with this:
@test = qw( 2004 200412 20041201 2004-12 2004-12-01 );
foreach $test (@test) {
print "$test : " . ($test =~ /^\d{4}(-\d{2}){0,2}$/ ? "TRUE" : "FALSE")
. "\n";
}
Regards,
Mike
-O
I need to test for the following date-type strings:
2004
2004-12
2004-12-01
All of the above would be legal, any other combination would be illegal.
I have been using the following data to test the regex:
''Should produce a false result.
'2004'Should produce a true result.
If the data is in a table with equal length rows you can create a 2-D array
in your perl script then feed that array into the range in one call:
$range1 = "A1:Z100"; #determine the range by tracking the number of rows
and columns when gathering the data.
$sheet->Range("$range1")->{Value} = [EM
Hi!
On Thu, 27 Jan 2005 11:42:45 -, Paul Sobey <[EMAIL PROTECTED]> wrote:
> I have these lines in a batch file as part of my build process, works
:
> assoc .pl=PerlScript
> ftype PerlScript=c:\perl\bin\perl.exe %%1 %%*
:
i think that from a command prompt should be
ftype PerlScript=c:\perl
I have these lines in a batch file as part of my build process, works a treat,
since when publishing ActivePerl via group policy the file types aren't
associated properly (bad defaults in the MSI?) Obbiously the shebang works fine
if using a bash shell on Windows (Cygwin), but in that case be ca
Hi!
On Fri, 21 Jan 2005 12:13:11 +0100, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
:
> If you don't see a little yellow pearl as icon for the
> .pl files, you probably didn't associate .pl with
> perl.exe during the install.
>
> You can do this manually by right-clicking
> on one of your .pl f
Sorry for being so late to reply ;)
I can only recommend using the same shebang line for Unix and Windows.
Now you would probably say this is not possible - wrong, it is. When
setting up my website I figured it out since my test system was
Windows, but the target system was Linux with the usual li
16 matches
Mail list logo