how to convert .txt to .csv

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rishidadhich
    New Member
    • Feb 2007
    • 9

    how to convert .txt to .csv

    hi all,

    i am trying to convert .txt format to .csc or .tsv format using PHP,
    can anyone has any clue how to convert this..

    thanx in advance.
  • Motoma
    Recognized Expert Specialist
    • Jan 2007
    • 3236

    #2
    Originally posted by rishidadhich
    hi all,

    i am trying to convert .txt format to .csc or .tsv format using PHP,
    can anyone has any clue how to convert this..

    thanx in advance.
    Load the text into an array, then use the implode() function with the tab character '\t'
    Check out PHP.net for more details on implode.

    Comment

    Working...