http://qs321.pair.com?node_id=926300


in reply to Re^3: separating two sententences
in thread separating two sententences

i am totally confused with regex here.it doesnt recognize the word after ; and between " " and another question is email address.some of them start with numbers and some with alphabet.oooooooooh!!

Replies are listed 'Best First'.
Re^5: separating two sententences
by dreadpiratepeter (Priest) on Sep 16, 2011 at 04:30 UTC
    even though you STILL haven't told me what your error is, I'll try to help. Here is a different approach:
    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."