Re: ignore spaces in files

2002-02-18 Thread John W. Krahn
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

RE: ignore spaces in files

2002-02-18 Thread Balint, Jess
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

Re: ignore spaces in files

2002-02-18 Thread Agustin Rivera
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

ignore spaces in files

2002-02-18 Thread Susan Aurand
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