View Single Post
Join Date: Jun 2008
Posts: 849
Reputation: R0bb0b is on a distinguished road 
Solved Threads: 67
R0bb0b's Avatar
R0bb0b R0bb0b is offline Offline
Practically a Posting Shark

Re: how to delete extra commas on csv file with php

 
0
  #3
Jun 12th, 2008
Sorry, that last example had a bug.
  1. foreach($old_lines as $line)
  2. {
  3. $newstring = str_replace(',,,"', ',"', $line);
  4. $newstring .= str_replace(',,,x', ',x', $newstring);
  5. //process the string
  6. }
Reply With Quote