Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to parse a csv file that has all the data wrapped in double quotes, because there may be commas in the double quotes.

Looks like this:

$songs = '"1, 2, 3, 4 (I Love You)","Plain White T's","CBE10-22",15,"CBE10-22","","","CB",984,"","10/05/10"';

$regResult = preg_match( "", $songs, $matches );

I can't figure out a regex that will return the data between the quotes as the matches. I'm sure there is some regex master that can help me with this.

share|improve this question
1  
why must it be a regex? – jcolebrand Jan 9 '11 at 6:35
3  
Regex is not the tool for this. – Amber Jan 9 '11 at 6:35
Perfect. Just needed the right tool. Thanks! – Brandon G Jan 9 '11 at 9:23

1 Answer

up vote 7 down vote accepted

see fgetcsv() and str_getcsv()

share|improve this answer
While correct, you could have supplied a short illustrative example. This way, the user does not have to leave the site and the answer is still usable in case the linked mirror of PHP.net is down. – Gordon Jan 9 '11 at 11:52
1  
I prefer to let the authorative documentation demonstrate basic usage of a function. – chris Jan 9 '11 at 21:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.