Comma-Separated Values are a list of plain text values delimited by commas, or a file containing one or more lists in that format.
1
vote
4answers
50 views
How do I remove lines of data in the middle of a text file with Ruby
I know how to write to a file, and read from a file, but I don't know how to modify a file besides reading the entire file into memory, manipulating it, and rewriting the entire file. For large files ...
0
votes
0answers
4 views
CRE Loaded 6.2 Import price from csv
I've got some problem with price import to CRE.
When I import prices from CSV they change in database and admin panel correct and next to this prices we add markup and that price should show on the ...
0
votes
1answer
24 views
Extract value from link in Powershell
I have a function in Powershell that gets the content of a file and breaks it up into fields to put into a CSV file. I'm wondering if there's a way to get a value from the link and add it to the ...
0
votes
0answers
9 views
Error on Ubuntu: stdin.h no such file or directory compilation terminated
Using flex to compose a formal converter. For any legal CSV file, converter should translate it to an HTML file containing a single table.I am getting the error: stdin.h no such file or directory ...
0
votes
0answers
29 views
Export data from a database to a .csv file
I have a PHP file which exports data from a database to a csv file.
I want to add more fields from the database to export.
Original file:
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
...
0
votes
1answer
13 views
iMacros: export error by missing tag to csv
i export data from a webpage to a csv with a fixed number of columns.
When a tag is missing, the macro ignores it and proceed to the next tag.
As result, this tag is also missing in the csv an there ...
1
vote
2answers
33 views
Rearranging Data in CSV by Certain Data in a Column
I have a CSV file with about 30,000 lines of data with 24 columns. The last column is a geographic column and looks something like this:
Ethiopia
IL
IL
TX
TX
MD
NY
NY
Ethiopia
Ethiopia
...
1
vote
0answers
13 views
imacros firefox use csv file to enter keywords into search box and extract results
I'm using the imacros free plugin for firefox to scrape data from a javascript search form on a website. Here is a breakdown of my macro so far.
This portion of the macro below automatically enters ...
2
votes
2answers
36 views
sed copy substring from fixed position and copy it in front of line
I'm dealing with many csv files and I can't find a way with sed to select a substring at a fixed position (chars 9-16) and copy it at the beginning of the line.
This is what I have:
...
0
votes
0answers
18 views
How to export my sqlite database to csv in android?
I would like to export an sqlite database to csv in android. I tried with importing with opencsv.jar but it didn't work out. Is this an issue due to ADT version 17 upgrade. Is there any other way to ...
2
votes
2answers
76 views
Parsing a CSV file and Hashing
I am trying to parse a CSV file to read in all the other zip codes. I am trying to create a hash where each key is a zip code and the value is the number it appears in the file. Then I want to print ...
0
votes
1answer
35 views
Magento Image upload using import / export does not work. It upload all the information except images
I have created one product and i want to copy the same product and information for another products where only title will be changed slightly but its picture and other details remains same
So i have ...
2
votes
2answers
31 views
How to edit data sets in R for multiple criteria?
Say I have a large set of data in R that has variables latitude, longitude, magnitude, and depth (for earthquakes) and I want to create a new data set that includes data for all the variables but only ...
2
votes
2answers
41 views
What is the best way to loop through string and insert into mysql column?
I have a variable which displays the following string:
$item_value = itemOne,itemTwo,itemThree
I would like to take this string and have insert each item as a separate row entry for a single column. ...
5
votes
2answers
73 views
Fastest way to extract only certain fields from comma separated string in Python
Say I have a string containing data from a DB or spreadsheet in comma separated format.
For example:
data = "hello,how,are,you,232.3354,good morning"
Assume that there are maybe 200 fields in ...
2
votes
1answer
31 views
Insert CSV line by line Into Postgres using PHP PDO
I am trying to have the user upload a file and then have the file be inserted into a postgres database line by line.
I have this code and I am getting the following error with my syntax:
Array ( ...
0
votes
1answer
18 views
Postgres COPY FROM csv file- No such file or directory
I'm trying to import a (rather large) .txt file into a table geonames in PostgreSQL 9.1. I'm in the /~ directory of my server, with a file named US.txt placed in that directory. I set the search_path ...
3
votes
1answer
37 views
Large CSV to JSON/Object in Node.js
I am trying to do something that seems like it should not only be fairly simple to accomplish but a common enough task that there would be straightforward packages available to do it. I wish to take a ...
0
votes
3answers
31 views
php link from csv bug (href value might be too long?)
I'm no php expert... so forgive me if I'm overlooking something...
I've got a csv file with two columns, looks like this:
john, VSgv4lEpuGS0vHIKapJZV7o...
jane, yHKy6NW6YJZzloFhLDQUJIN...
the ...
0
votes
1answer
27 views
How to dump whole csv database to format readable by Excel (csv is OK).
This may be a futile excersise, but one of my client totally insisted that he needs whole database dump to perform analytics in Excel.
There are many answers to how to dump single table to csv (like ...
0
votes
1answer
22 views
MYSQL Query results exported to .csv [duplicate]
How would I go about having my sql query results exported to a .csv file? The goal is to automate this process, the query would pull records from the previous day and then export them to a directory ...
1
vote
1answer
13 views
MS Access: Import Specification not working through VBA
I have an import specification for csv files which, when I run it on a file through the GUI, works just fine. However, when I run it through VBA, for some reason it forgets that one column is supposed ...
2
votes
3answers
50 views
Getting data from .csv file python (panda)
I am working on a python project where I have a .csv file like this.
freq,ae,cl,ota
825,1,2,3
835,4,5,6
850,10,11,12
880,22,23,24
910,46,47,48
960,94,95,96
1575,190,191,192
1710,382,383,384
...
1
vote
3answers
57 views
Finding out Age in Months and Years given DOB in a CSV using python
I making several adjustments to an automatically gennerated CSV report. I am currently stuck on a part where I need to take a patient's DOB and convert that into an Age in Months and Years. There is ...
1
vote
1answer
21 views
Graphing with matplotlib where one column has a particular value
I have a csv file with the following data.
Time,Type,RX,TX
2013-05-16 18:43:48,UP,0.72,10.86
2013-05-16 18:43:51,DOWN,68.74,1.67
2013-05-16 18:44:06,DOWN,104.01,2.52
2013-05-16 18:43:48,UP,1.21,10.94
...
0
votes
3answers
36 views
Easy way to get the LON LAT of a list of cities
I have a list of cities in CSV format which I need to longitude and latitude for.
This is my CSV
GeoSearchString,Title
"New York", "Manhatten"
"Infinite Loop 1, San Francisco", "Apple Headquarter"
...
1
vote
3answers
51 views
How to validate a .csv file before storage in C#?
I have some .csv files which I am parsing before storing in database.
I would like to make application more robust, and perform validation upon the .csv files before save in the database.
So I am ...
-1
votes
2answers
47 views
How to upload csv file into mysql database faster
I want to upload a csv file into mysql database through php.
I already have more than 20,000 records in database. now when i upload csv file containing around 1000 records in it, it takes very much ...
0
votes
0answers
32 views
Regex with PHP - Can't add preg_grep indexes to file
So, I need to make a script that reads a .csv file, find name: xxxxx with regex, and add the regex results to a txt file.
My Php Script:
<?PHP
$array=array();
$file_handle = ...
3
votes
3answers
41 views
Populating a dataset from a CSV file
I would like to read the contents of a CSV file and create a dataset.
I am trying like this:
var lines = File.ReadAllLines("test.csv").Select(a => a.Split(';'));
DataSet ds = new DataSet();
...
2
votes
1answer
35 views
Reading a CSV file containing greek characters
I am trying to read the data from a CSV file using the following:
var lines = File.ReadAllLines(@"c:\test.csv").Select(a => a.Split(';'));
It works but the fields that contain words are written ...
-1
votes
1answer
31 views
Creating CSV from php
How do I go through a loop in php and basically add it to my array? I'm using this simple code from here - http://php.net/manual/en/function.fputcsv.php:
<?php
$list = array (
array('aaa', ...
0
votes
1answer
41 views
Writing big strings to a text file?
I have strings which look like this -
String text = "item1, item2, item3, item4 etc..."
I made java code to write these strings to a text file which will be converted to csv by simply changing the ...
1
vote
5answers
74 views
how to check whether value exists or not in mysql database column while inserting
i have a contactnumber column in mysql database. In contactnumber column there are more than 20,000 entries. Now when i upload new numbers through .csv file, i dont want duplicate numbers in database.
...
0
votes
1answer
28 views
Uploading CSV to Flask for background processing
I'm looking to use Flask to host a single-page website that would allow users to upload a CSV that would be parsed and put into a database. All of the database shenanigans are complete (through ...
0
votes
1answer
13 views
import csv into mysql using myphpadmin
I am trying to import a csv file into mysql database. The database contains 5 tables.
Table 1 has a primary key
Table 2 has its own primary and table 1's primary as foreign key
Table 3 has its own ...
0
votes
1answer
30 views
Create a .csv file and then tell the printer to print the file
So I have a program where I am able to successfully create a .csv file with my data.
I now have to somehow print that file.
I looked up a lot of resources about printing in WPF but they are all so ...
-1
votes
2answers
46 views
XML to CSV using XSLT
I am new to XML and XSLT. I have the XML similar to this
{
<projects >
<project ID="1">
<name>Shockwave</name>
<language>Ruby</language>
...
0
votes
2answers
21 views
Export content of a sqlite3 table in csv
I have a ruby script that generates a sqlite3 database.
I want to be able, inside the ruby script to generate an output.csv file containing one of the database table.
Is there a way to handle that ...
-2
votes
0answers
51 views
c# csv file read, Write to new file Excluding Values
I am working on a application, I have a CSV File that I receive and I need to exclude some values from the file but still need the original. Column name 123, but I NEED to remove all rows with the ...
0
votes
1answer
45 views
What “language” is this (found in a .csv file, maybe former excel sheet) ?
I found this in a .csv file (maybe former excel sheet) and want to know what "language" this is:
a:6:{i:0;a:2:{s:3:"day";s:6:"Montag";s:7:"opening";s:11:"9:30 - 7:00";}
...
1
vote
1answer
22 views
Changing The Delimiter to CTRL+A in Python CSV Module
I'm trying to write a csv file with the delimiter ctrl+a. I'm going to have to eventually write the file to hadoop and I'm unable to use a standard delimiter.
Currently I'm trying this:
writer = ...
0
votes
1answer
13 views
trasform csv to xml file genertaion using xslt programing
I would like to generate xml file from an extisng csv file using xslt.
Can anybody tell me command to use.
I don't knwo the command to convert the file.
Suppose my csv file named :- source.csv
...
0
votes
3answers
22 views
How to save a Datatable as a CSV file on client pc ASP.net
How would one go about saving a dataset as a CSV file to a client pc?
I Can save a file from the server to a client pc, and I can convert a Datatable to a CSV file, but I cant seem to figure out how ...
0
votes
0answers
4 views
Ruby CSV library: CSV::Table push method usage outputs data in improper format
1.9.3dev :078 > header = CSV::Row.new(['Date', 'Meals'], [], true)
=> #<CSV::Row "Date":nil "Meals":nil>
1.9.3dev :079 > table = CSV::Table.new([header])
=> ...
0
votes
4answers
49 views
Converting a string to floats error
So I am trying to run this piece of code:
reader = list(csv.reader(open('mynew.csv', 'rb'), delimiter='\t'))
print reader[1]
number = [float(s) for s in reader[1]]
inside reader[1] i have the ...
0
votes
1answer
35 views
write zero to blank cells python
I have a few data files contained flow data. For example,
9/12/1999 0
13/12/1999 2544
14/12/1999 2552
15/12/1999
16/12/1999
18/12/1999 3039
19/12/1999 3043
...
0
votes
3answers
52 views
how to catch \n\r in a filestream and line locations, C#
i have a .CSV file that holds data thats looks like this:
Sana Paden,1098,64228,46285,2/15/2011
Ardelle Mahr,1242,85663,33218,3/25/2011
Joel Fountain,1335,10951,50866,5/2/2011
Ashely ...
0
votes
0answers
16 views
Download csv historical in android
I'm trying to unburden one csv file here:
http://ichart.finance.yahoo.com/table.csv?s=GOOG&a=01&b=3&c=2012&d=10&e=31&f=2013&g=d&ignore=.csv
enters the thread and jump ...
-1
votes
1answer
27 views
How to load data from csv to mysql
So the structure of the csv file is like this:
Country,City,AccentCity,Region,Population,Latitude,
ad,aixas,AixĂ s,06,,42.4833333,1.4666667
ad,aixirivali,Aixirivali,06,,42.4666667,1.5
...





