I'm writing a small script for my running club's site to allow searchable race results.
The data is stored in a CSV format file which I split(/,/) on commas into an array. This is all great except some of the data fields contain commas which I want to keep:
The file looks something like this:
1,"FirstName","Surname","Running club, Country",hh:mm:ss
2,"etc.","etc.","Different club, same country",hh:mm:ss
The commas in the 4th field are to be kept, not split on.
I've tried:
while (<FP>) {
s/"(.+?),(.+?)"/g;
(@row) = split(/,/);
}
but it doesn't work - it picks up the wrong commas. Can anyone help please?
I have a feeling that I need a non-backtracking pattern but I can't suss it.
Thanks folks,
Pingu
Edited 2001-05-28 by Ovid
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.