Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^4: to csv file

by Anonymous Monk
on Jun 29, 2013 at 07:56 UTC ( [id://1041416]=note: print w/replies, xml ) Need Help??


in reply to Re^3: to csv file
in thread to csv file

hey the thing is i need the output as csv , because it is an input to other sub routine

Replies are listed 'Best First'.
Re^5: to csv file
by poj (Abbot) on Jun 29, 2013 at 08:23 UTC
    I would change the other routine, but anyway, a simple solution would be double quote all the fields regardless.
    #!perl use strict; open OUT,">test.csv" or die "$!"; while (<DATA>){ chomp; s/;;/","/g; print OUT '"'.$_.'"'."\n"; } close OUT; __DATA__ abd;;sasa;;trre,dsa;;sdas;;dsss abd;;sasa;;trre,dsa;;sdas;;dsss
    poj

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1041416]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-24 00:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found