in reply to Re: Changing -> to work within a string
in thread Changing -> to work within a string
my $directory = concat($machine->work_dir, "/subdir/", $machine->software_version, "/");
That sounds an awful lot like perl's built in join function, called like so:
cheersmy $directory = join "", $machine->work_dir, "/subdir/", $machine->sof +tware_version, "/";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Changing -> to work within a string
by Marcello (Hermit) on Mar 19, 2003 at 13:43 UTC |