Doyle has asked for the wisdom of the Perl Monks concerning the following question:
This does not work. Thanks for your help in advance.sub checkData { my $zero = 0; my $space = ' '; if($Coverage_limits.length lt 11) { $Coverage_limits = ' '; } if($Reserve_1) { $Reserve_1 = ' '; } if($Coverage_entry_date != "") { my $year = substr(@row[3], 2, 2); my $month = $zero.@row[4]; my $day = $zero.@row[5]; $Coverage_entry_date = $year.$month.$day; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: I need a regExp to add spaces
by trammell (Priest) on Mar 17, 2005 at 21:46 UTC | |
|
Re: I need a regExp to add spaces
by beauregard (Monk) on Mar 17, 2005 at 23:38 UTC | |
by Anonymous Monk on Mar 21, 2005 at 17:11 UTC | |
by beauregard (Monk) on Mar 21, 2005 at 17:23 UTC | |
|
Re: I need a regExp to add spaces
by naChoZ (Curate) on Mar 17, 2005 at 21:57 UTC | |
|
Re: I need a regExp to add spaces
by sh1tn (Priest) on Mar 17, 2005 at 21:53 UTC | |
|
Re: I need a regExp to add spaces
by eieio (Pilgrim) on Mar 17, 2005 at 21:53 UTC | |
|
Re: I need a regExp to add spaces
by eXile (Priest) on Mar 18, 2005 at 14:53 UTC |