Thread
:
how to delete extra commas on csv file with php
View Single Post
•
•
Join Date: Jun 2008
Posts: 850
Reputation:
Solved Threads: 67
R0bb0b
Offline
Practically a Posting Shark
Re: how to delete extra commas on csv file with php
0
#
5
Jun 12th, 2008
try just doing this then
Help with Code Tags
PHP Syntax
(
Toggle Plain Text
)
foreach
(
$old_lines
as
$line
)
{
$newstring
=
str_replace
(
',,,'
,
','
,
$line
)
;
//process the string
}
foreach($old_lines as $line) { $newstring = str_replace(',,,', ',', $line); //process the string }
R0bb0b
View Public Profile
Find all posts by R0bb0b