in reply to concating problem
Update: I really should add that if the string contains just a '\r' (and it looks like it might), chomp won't actually work. You'll have to $string =~ s/\r//g; or $string =~ tr/\r//d;chomp($string);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: concating problem
by doubtingben (Novice) on Apr 21, 2003 at 18:31 UTC |