Hi, We receive a text file with the following entries.
"000001","item1","apple one","apple two","apple three" "000002","item2","body one","body two","body three" "000003","item2","body one","body two","body three" "000004","item2","body one","body two","body three" "000005","item1","orange one","orange two","orange three" "000006","item2","body one","body two","body three" "000007","item2","body one","body two","body three" "000008","item2","body one","body two","body three" "000009","item2","body one","body two","body three" "000010","item2","body one","body two","body three" How do I use perl to convert the above to the following? I'm a novice perl user. "apple three","body one","body two","body three" "apple three","body one","body two","body three" "apple three","body one","body two","body three" "orange three","body one","body two","body three" "orange three","body one","body two","body three" "orange three","body one","body two","body three" "orange three","body one","body two","body three" "orange three","body one","body two","body three" Thanks. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/