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
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 Rivera Webmaster, Pollstar.com http://www.pollstar.com - Original Message - From: "Susan Aurand" <[EMAIL PROTECTED]> To: