in reply to Re: Re: problem with exists
in thread problem with exists
You could insert a debugging line in your foreach loop:
print STDERR "Name is ->$onname<-\n";
The extra punctuation will make any whitespace rather visible. chomp is probably exactly what you need, like chomp @newest_members; or chomp $onname;
|
|---|