Re: Regex question.

2003-07-02 Thread Paul Kraus
> 1- Remove all the leading 000 from any field like acct# = 00037839842 > should be 37939842 and Post# should be 1980 s/^0+//; > > 2- Want to format dates like birth = 02151956 should be 02/15/1956 my $date = "$1/$2/$3/" if (/(\d\d)(\d\d)(\d\d\d\d)/) HTH Paul Kraus

RE: Calling a perl script from another perl script

2003-06-03 Thread Paul Kraus
List correct me if I am wrong but you can use single quotes here because your not using any variables. You are passing exactly what you see. In fact this is the preferred way to write strings that do not contain variables or special characters. Correct? -Original Message- From: [EMAIL PROT

RE: Calling a perl script from another perl script

2003-06-03 Thread Paul Kraus
Is this a windows system? Try System('perl sendfile.pl ons4jlb') Also go to the directory of the source script and from the command line type sendfile.pl ons3jlb and see if it works. You may have to include the path. On my system I can't pass anything into a perl script with out prefixing perl to

RE: Perl question

2003-02-13 Thread Paul Kraus
Pass it as a referance. #!/usr/bin/perl -w @sample_array = ('hi', 'there', 'steve'); $sample_array_ref = \@sample_array; &PRINT_CONTENTS($sample_array_ref); exit 0; sub PRINT_CONTENTS{ my $local_ref = $_[0]; foreach (@{$local_ref}){ print "string = $_\n"; } } You can also clean the c

FW: Cgi Win xp Perl

2003-01-07 Thread Paul Kraus
{ print "$name:\n"; foreach $value ($q->param($name)){ print "\t$value\n"; } } Paul Kraus Network Administrator PEL Supply Company 216.267.5775 Voice 216-267-6176 Fax www.pelsupply.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: