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
  #2
Jun 11th, 2008
  1. $replace = array(',,,"', ',,,x');
  2. $replacewith = ",";
  3. foreach($old_lines as $line)
  4. {
  5. $newstring = str_replace($replace, $replacewith, $line);
  6. //process the string
  7. }
Last edited by R0bb0b; Jun 11th, 2008 at 7:36 pm.
Reply With Quote