in reply to Re: Creating Filenames using variables
in thread Creating Filenames using variables
$mon = "MON.DOC"; @name = split (/\./,$mon); $date = `date`; #(or whatever) $filename = $name[0] . "_" . $date . "." . $name[1];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Creating Filenames using variables
by zigster (Hermit) on Feb 08, 2001 at 16:30 UTC | |
|
Re: Re: Re: Creating Filenames using variables
by Albannach (Monsignor) on Feb 08, 2001 at 19:35 UTC | |
by magnus (Pilgrim) on Feb 08, 2001 at 19:58 UTC |