Chris wrote:
> 
> I have a mask in "\\server\alias\*****\file\". The asterisks will be
> assigned the value of a variable. Any ideas?
> 
> my $folder = "foldername";
> my string1 = "\\server\alias\*****\file\";
> 
> # how to make string1 = \\server\alias\foldername\file\

my $folder = "foldername";
my $string1 = "\\\\server\\alias\\$folder\\file\\";



John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to