Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
6k views

Unix Sort with Tab Delimiter

I have a data with the following format: foo<tab>1.00<space>1.33<space>2.00<tab>3 Now I tried to sort the file based on the last field decreasingly. I tried the following ...
7
votes
2answers
2k views

What is the best mime-type and extension to use when exporting tab delimited?

I've come across the problem where Excel will not play nice with UTF-8 encoded CSV files. See this related question on Stack Overflow. I've followed the solution of exporting as UTF-16, however it ...
4
votes
4answers
185 views

Looking for a good text parsing library for C#

Has anyone run across a quality library that will parse, line by line, CSV, tab-delimited, and Excel files? I've started to do it manually but have noticed some of the intricacies in parsing a ...
3
votes
4answers
2k views

Efficient way to read large tab delimited txt file?

I have a tab delimited txt file with 500K records. I'm using the code below to read data to dataset. With 50K it works fine but 500K it gives "Exception of type 'System.OutOfMemoryException' was ...
2
votes
2answers
63 views

Truncating characters when importing with SAS

I have an Excel spreadsheet with company data and descriptions. Some of the cells basically contain mini-essays in them, pages and pages of straight text contained in a single cell. SAS has been ...
2
votes
5answers
954 views

Python - Nested List to Tab Delimited File?

I have a nested list comprising ~30,000 sub-lists, each with three entries, e.g., nested_list = [['x', 'y', 'z'], ['a', 'b', 'c']]. I wish to create a function in order to output this data ...
2
votes
7answers
1k views

How do I know if a file is tab or space delimited in Perl?

I am uploading a file to a Perl program from from an HTML page. After the file has been uploaded I want to determine whether the file is either space or tab delimited and all the values are integers. ...
2
votes
2answers
2k views

Vb6: Separating Tab Delimited Text

I have a file with several thousand rows and several columns separated with tabs What I'd like to do is loop through each individually, Drop the columns into an array so that I can place them in ...
1
vote
1answer
42 views

selecting across multiple columns with python pandas?

I have a dataframe df in pandas that was built using pandas.read_table from a csv file. The dataframe has several columns and it is indexed by one of the columns (which is unique, in that each row has ...
1
vote
1answer
45 views

indexing several csv files with pandas from records?

I have a list of csv files ("file1", "file2", ...") that have two columns but do not have header labels. I'd like to assign them header labels and them as a DataFrame which is indexed by file and then ...
1
vote
1answer
47 views

python csv register_dialect

I am using the csv module in python to parse a delimieted file. I use the register_dialect method of csv to specify the deleimiter and other parameters. It was working fine all this while, but now I ...
1
vote
2answers
342 views

How to write a tab-delimited file when the tab-delimiter comes from a database?

I have a problem really phrasing this question so i try to give an example: The following code works and creates the expected output: a delimited file where each column is separated by a "real" tab. ...
1
vote
1answer
916 views

Modifying a XSLT for converting XML to tab delimited text file

A system that I am using currently allows me to export selected record data in XML format. The system also provides an option to use XSLT to transform the XML. I like to use it to convert the XML to ...
1
vote
3answers
12k views

String parsing in Java with delimeter tab “\t” using split

I have to parse a line which is tab delimited. I parse it using the split function, and it works in most situations. The problem occurs when some field is missing, so instead of getting null in that ...
0
votes
1answer
34 views

HTTP Post request with tab delimited field

I've been asked to set up a web service for account creation. The inbound HTTP Post request contains a single formatted field containing tab delimited fields with a header line wrapped in tags. ...
0
votes
1answer
44 views

Comparing&editing two tabdelimeted files with PHP?

I want to compare two tabdelimeted files. I take the files and converts them into two arrays with the following structure: Array 1 Array ( [0] => Array ( ...
0
votes
2answers
32 views

How to create structured array from Tabdelimited file with PHP?

I have a problem whith reading a tabdelimited file. The structure on my file is: Field 1 Field 2 Field 3 Element11 Element12 Element13 Element21 Element22 Element23 Element31 ...
0
votes
1answer
33 views

fast intersection, complement and union of tab-delimited text files?

Can someone recommend a fast unix-based utility (ideally written in C) for getting efficient, streaming intersection/union of tab-delimited text files? For example, allow queries such as "give me the ...
0
votes
1answer
69 views

tab-delimited string to XML with PHP

I'm trying to write the tab-delimited content of a variable to XML like this: $tsvData = str_getcsv($input, "\t"); foreach($tsvData as $line => $row) { if($line > 0) { ...
0
votes
1answer
175 views

How to specify tab as a record separator for hadoop input text file?

The input file to my hadoop M/R job is a text file in which the records are separated by tab character '\t' instead of newline '\n'. How can I instruct hadoop to split using the tab character as by ...
0
votes
0answers
121 views

Undesirable Double Quotes When Exporting a Tab Delimited File

When I export my SQL results into a tab delimited file, double quotes surround a handful of my records. I don't know why this is. I am assuming it is because some of the record names have a special ...
0
votes
4answers
163 views

How to import Tab delimited file in mysql database using java?

I want to import Tab delimited file in mysql database.How i can do using java. Thanks
0
votes
5answers
396 views

How to write a multidiminsional array as tab delimited .txt file in perl

I have a multidimensional array called @main and I want to write this array into a tab delimited .txt file in perl Can anyone help me in this issue?
0
votes
2answers
229 views

SQL output delimited file..awk command to read value

I have sql output delimited file like this: FD LD -------- -------- 02-01-11 02-28-11 I want to set value of FD as 02-01-11 and LD as 02-28-11 in my c shell script.. I have already done ...
0
votes
2answers
354 views

regex to parse tab delimited file

I'm trying to get this regex to work for capturing fields on a tab delimited line. this seems to work for all cases except when the line starts with two tabs: ...
0
votes
5answers
302 views

How to safety parse tab-delimiter string?

How to safety parse tab-delimiter string ? for example: test\tbla-bla-bla\t2332 ?
0
votes
3answers
834 views

.NET & Tab-Delimited files

How can I create and append to a tab-delimited file in C#?
0
votes
2answers
499 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
3answers
394 views

Best way of reading & processing a text file

Was wondering if anyone had any favourite methods/ useful libraries for processing a tab-delimited text file? This file is going to have on average 30,000 - 50,000 rows in it. Just need to read ...
0
votes
1answer
3k views

How to parse a tab-separated line of text in Ruby?

I find Ruby's each function a bit confusing. If I have a line of text, an each loop will give me every space-delimited word rather than each individual character. So what's the best way of retrieving ...
0
votes
1answer
159 views

Is there such a thing as TapeMACS data file formatting?

I'm trying to do an estimate for a data integration, and the client sent across some files for their current system that appear to be in TapeMACS format? It is not a comma-separated or tab-delimited ...