Susan Aurand wrote:
>
> I have been writing Perl code for (1) week as of today. Thanks to the
> beginner user e:mail, and thank you to John Edwards, and
> [EMAIL PROTECTED], and other input I have learned from this page. I have
> put togther the following. It works well, and is doing what I want
lto:[EMAIL PROTECTED]]
Sent: Monday, February 18, 2002 3:52 PM
To: [EMAIL PROTECTED]
Subject: Re: ignore spaces in files
If I think I am understanding you right, try
$name=~ s/\s+^//g;
Means any white space (\s+) before the end of name (^), remove (blank in
between the //'s)
Agustin R
AIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Monday, February 18, 2002 1:29 PM
Subject: ignore spaces in files
> I have been writing Perl code for (1) week as of today. Thanks to the
> beginner user e:mail, and thank you to Joh
I have been writing Perl code for (1) week as of today. Thanks to the
beginner user e:mail, and thank you to John Edwards, and
[EMAIL PROTECTED], and other input I have learned from this page. I have
put togther the following. It works well, and is doing what I want it to
do. Except, 1 little pro