Try Open Perl IDE http://open-perl-ide.sourceforge.net/
+--
| José J. Cintrón
+--
> -Original Message-
> > which is yours "best" open source IDE for Perl. I use SciTE under
> > Linux, but I'm a little confu
Here's a fixed version, not much though into it, you can figure out how
to remove the trailing ,
$source_file = "input.txt";
$result_file = "output.txt";
open (SOURCE, $source_file) || die "cannot open $source_file: $!";
open (RESULT, ">$result_file") || die "cannot open $result_file: $!";
whil
Try this one...
$str = "AABBE[TH]AODD[AAAB]AQA";
$str =~ s/\[[A-Z]*\]/N/g;
print "$str\n\n";
+--
| José J. Cintrón - <[EMAIL PROTECTED]>
+--
> -Original Message-
> From: Edward Wijaya [mailto:[EMAIL PROTECT
; Sent: Friday, November 11, 2005 10:14
> To: Cintron, Jose J.; "kathyjjja"; beginners@perl.org
> Subject: RE: Need permissions to rename file on Windows XP
>
> Thank you for replying. It is a log file that I can write to
> from both Perl and VB.NET. But for some reason, I am
Do you have permissions to modify this file. If you don't there's not
much you can do.
+--
| José J. Cintrón
+--
> -Original Message-
> From: kathyjjja [mailto:[EMAIL PROTECTED]
> Sent: Friday, November 1
You may want to take a look at the Image::Info module
(http://search.cpan.org/~gaas/Image-Info-1.16/lib/Image/Info.pm)
+--
| José J. Cintrón - <[EMAIL PROTECTED]>
+--
-Original Message-
From: Daniel Smith [m
If it's just a demo, do a quick and dirty encryption yourself, for
example
- xor the password before storing it and xor it again before
using it.
my $string = "password";
my $encrypted_string = ~$string;
-Original Mess