in reply to Appending characters to an existing string

Hi,
You looks like that you want to join the extension and make the filename complete.
You can also use:
$file = 'wolf'; $ext = 'pl'; $file = join '.' => ( $file, $ext);
Artist

Replies are listed 'Best First'.
Re: Re: Appending characters to an existing string
by Sihal (Pilgrim) on Nov 22, 2002 at 10:16 UTC
    TIMTOWTDI :-)