in reply to Re^4: separating two sententences
in thread separating two sententences
even though you STILL haven't told me what your error is, I'll try to help. Here is a different approach:
-pete
"Worry is like a rocking chair. It gives you something to do, but it doesn't get you anywhere."
while(<IN>) { chomp; my ($email,$name) = split /;/; $name =~ s/\"//g; print $email . ',' . $name . "\n"; }
-pete
"Worry is like a rocking chair. It gives you something to do, but it doesn't get you anywhere."
|
---|
In Section
Seekers of Perl Wisdom