0
votes
3answers
80 views
Why linux sort is not giving me desired results?
I have a file a.csv with contents similar to below
a,b,c
a ,aa, a
a b, c, f
a , b, c
a b a b a,a,a
a,a,a
a aa ,a , t
I am trying to sort it by using sort -k1 -t, a.csv
But it is giving following …
1
vote
4answers
310 views
Using awk to “remove” unwanted text from CSV file
Hi,
I have a CSV file like this:
SUPPORT 07/30/2008-10:59:54 Eastern Daylight Time
123 07/03/2009-08:56:42 Eastern Daylight Time
DC321 07/10/2009-20:16:56 Eastern Daylight Time
where the …
0
votes
5answers
805 views
Parsing CSV file with un-escaped quotation marks and commas in .NET
I was wondering if someone could help me.
I have to parse data from a csv file and put this into a db table. An example of the data is as follows:
"first field", "second , field", "third " Field " …
0
votes
1answer
219 views
What data provider for a tclientdataset using a csv file?
I have a tclientdataset. It is used to get data to and from a csv file. The csv file may not exist until the application is run. I have the following code in a tbutton...
…
0
votes
2answers
15 views
How do I correctly handle CR when reading text files with OleDB
I have text files that are Tab delimited. I created a Schema.ini like so:
[MY_FILE.TAB]
Format=TabDelimited
ColNameHeader=False
Col1=id Short
Col2=data Text
This is the code I use to read it (C#):
…
0
votes
2answers
23 views
prevent CRLF in CSV export data
Hi,
I have an export functionality that reads data from DB (entire records) and writes them in a .txt file, one record on a row each field being separated by ';'. the problem i am facing is that some …
1
vote
3answers
125 views
Parsing a CSV file problems C#
Hi everyone,
Having a problem with parsing a CSV file. I connect to the file using the following:
string connString = "Provider=Microsoft.Jet.OLEDB.4.0;"
+ "Data Source=\"" + dir + "\\\";"
…
0
votes
4answers
35 views
Write CSV To File Without Enclosures In PHP
Is there a native function or solid class/library for writing an array as a line in a CSV file without enclosures? fputcsv will default to " if nothing is passed in for the enclosure param. Google is …
3
votes
0answers
127 views
Importing big(ish) CSV text files into R
I've seen little bit of discussion as to the best way to import 2GB or more of text data into an R data frame. Yesterday I wrote a blog post about using sqldf() to import the data into sqlite as a …
0
votes
0answers
12 views
export to csv using fastercsv and CSV::Writer (Ruby on Rails)
What am I trying to do: export data to csv.
I have a form which allows user to select the format (from a drop down menu). So based on the selection of the format the ouput is displayed using a ajax …
0
votes
1answer
19 views
How visible/traceable is local CSV data queried from an ASP.NET page?
I want to have a page on a remote site that selects a local CSV file as a data source which outputs to a GridView. What is the format of the source data and how is it transferred to the server in …
1
vote
2answers
21 views
Gridview: Export to csv issue
Morning all - another day, another question from Rich!
I have the following scenario. I have two methods of populating a GridView with data. These are as follows:
protected void …
0
votes
0answers
14 views
Uploaded file char-set conversion with Ruby
I have an application where we're having our clients upload a csv file to our server. We then process and put the data from the csv into our database. We're running into some issues with char-sets …
2
votes
5answers
125 views
marking duplicates in a csv file
Hello, I'm stumped with a problem illustrated in the sample below:
"ID","NAME","PHONE","REF","DISCARD"
1,"JOHN",12345,,
2,"PETER",6232,,
3,"JON",12345,,
4,"PETERSON",6232,,
5,"ALEX",7854,,
…
1
vote
2answers
68 views
Reading a csv file in Python with different line terminator
I have a file in CSV format where the delimiter is the ASCII unit separator ^_ and the line terminator is the ASCII record separator ^^ (obviously, since these are nonprinting characters, I've just …
