Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Some help in refining this regex for CSV files (http://www.velocityreviews.com/forums/t955189-some-help-in-refining-this-regex-for-csv-files.html)

Oltmans 12-06-2012 07:21 AM

Some help in refining this regex for CSV files
 
Hi guys,

I've to deal with CSVs that look like following

CSV (with one header and 3 legit rows where each legit row has 3 columns)
----
Some info
Date: 12/6/2012
Author: Some guy
Total records: 100

header1, header2, header3
one, two, three
one, "Python is great, so are other languages, isn't ?", three
one, two, 'some languages, are realyl beautiful\r\n, I really cannot deny \n this \t\t\t fact. \t\t\t\tthis fact alone is amazing'
----

So inside this CSV, there will always be bad lines like the top 4 (they could end up in the beginning, in the middle and even in the last). So above sample, csv has 3 legit lines and a header. I want to read those three linesand here is a regex that I came up with (which clearly isn't working)

#print line
pattern = r"([^\t]+\t|,+)"
matches = re.match(pattern, line)

Do you've any better ideas guys? I will really appreciate all help.

Mark Lawrence 12-06-2012 07:57 AM

Re: Some help in refining this regex for CSV files
 
On 06/12/2012 07:21, Oltmans wrote:
> Hi guys,
>
> I've to deal with CSVs that look like following
>
> CSV (with one header and 3 legit rows where each legit row has 3 columns)
> ----
> Some info
> Date: 12/6/2012
> Author: Some guy
> Total records: 100
>
> header1, header2, header3
> one, two, three
> one, "Python is great, so are other languages, isn't ?", three
> one, two, 'some languages, are realyl beautiful\r\n, I really cannot deny \n this \t\t\t fact. \t\t\t\tthis fact alone is amazing'
> ----
>
> So inside this CSV, there will always be bad lines like the top 4 (they could end up in the beginning, in the middle and even in the last). So above sample, csv has 3 legit lines and a header. I want to read those three lines and here is a regex that I came up with (which clearly isn't working)
>
> #print line
> pattern = r"([^\t]+\t|,+)"
> matches = re.match(pattern, line)
>
> Do you've any better ideas guys? I will really appreciate all help.
>


I'd simply use the csv module from the standard library to read your
files, discarding anything that you regard as bad. I'd certainly not
use a regex for this.

--
Cheers.

Mark Lawrence.


Tim Chase 12-06-2012 02:27 PM

Re: Some help in refining this regex for CSV files
 
On 12/06/12 01:21, Oltmans wrote:
> Hi guys,
>
> I've to deal with CSVs that look like following
>
> CSV (with one header and 3 legit rows where each legit row has 3 columns)
> ----
> Some info
> Date: 12/6/2012
> Author: Some guy
> Total records: 100
>
> header1, header2, header3
> one, two, three
> one, "Python is great, so are other languages, isn't ?", three
> one, two, 'some languages, are realyl beautiful\r\n, I really cannot deny \n this \t\t\t fact. \t\t\t\tthis fact alone is amazing'
> ----
>
> So inside this CSV, there will always be bad lines like the top 4 (they could end up in the beginning, in the middle and even in the last). So above sample, csv has 3 legit lines and a header. I want to read those three lines and here is a regex that I came up with (which clearly isn't working)
>
> #print line
> pattern = r"([^\t]+\t|,+)"
> matches = re.match(pattern, line)
>
> Do you've any better ideas guys? I will really appreciate all help.


I agree with Mark that using the "csv" module will likely be your
easiest way to go. Just consume the lines you don't want before
passing it to the csv.reader(), or parse them and discard invalid
items. The first could be done something like

import csv
f = file("data.csv", "rb")
while True:
line = f.next().rstrip("\r\n")
if not line: break
r = csv.reader(f)
for row in r:
print repr(row)

The latter might be done something like

f = file("data.csv", "rb")
r = csv.reader(f)
for row in r:
if len(row) != 3: continue
print repr(row)

However, I also noticed that your example file doesn't seem to fit a
true csv file definition, as you seem to switch quoting notations,
sometimes using single, sometimes using double quotes.

-tkc





All times are GMT. The time now is 06:23 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57