Tagged Questions
The delimited-text tag has no wiki summary.
11
votes
7answers
993 views
Is there a standard format for describing a flat file?
Is there a standard or open format which can be used to describe the formating of a flat file. My company integrates many different customer file formats. With an XML file it's easy to get or create ...
9
votes
3answers
552 views
Viewing delimited columns in emacs
Is anyone aware of an emacs mode or function that will reformat a buffer holding a delimited file such that each delimiter (e.g. tab) defines a "column" with the width of each column set to the ...
7
votes
2answers
1k views
MySQL Split to use in “SELECT WHERE IN” statement
I've been scouring various MySQL sites in the hope of finding something that will allow me to turn this:
var parameters = "a,b,c,d"; // (Could be any number of comma-delimited values)
Into this ...
6
votes
5answers
82 views
Parsing a very hectic space delimited file
I'm trying to help my dad out -- he gave me an export from a scheduling application at his work. We are trying to see if we can import it into a mysql database so he/co-workers can collaborate online ...
6
votes
5answers
459 views
C#: string[] to delimited string. Is there a one-liner?
What I'd prefer is something like:
string[] strArray = {"Hi", "how", "are", "you"};
string strNew = strArray.Delimit(chDelimiter);
However, there is no such function. I've looked over MSDN and ...
6
votes
20answers
3k views
What is a more unique delimiter than comma for separating strings?
I have several textboxes where users can enter information into them. This can include commas, so I can't use the standard comma delimited strings.
What is a good delimiter to denote that strings ...
4
votes
3answers
52 views
Need help improving performance of PowerShell delimited-text parsing script
I have the need to parse through a large pipe-delimited file to count the number of records whose 5th column meets and doesn't meet my criteria.
PS C:\temp> gc .\items.txt -readcount 1000 | `
? ...
4
votes
3answers
760 views
How do I handle every ASCII character (including regex special characters) in a Perl regex?
I have the following code in Perl:
if (index ($retval, $_[2]) != -1) {
@fs = split ($_[2], $_[1]);
$_[2] is the delimiter variable and $_[1] is the string that the delimiter may exist in. ...
3
votes
1answer
221 views
DOS batchfile is skipping FOR delims
I'm trying to parse a text file, and it's working apart from skipping a column if it's empty.
Here's the file format:
206695844 66583369 L CAT 1 1 4144042 214857 64378180 L ...
3
votes
2answers
293 views
Oracle SQL Loader split data into diferent tables
I have a Data file that looks like this:
1 2 3 4 5 6
FirstName1 | LastName1 | 4224423 | Address1 | PhoneNumber1 | 1/1/1980
FirstName2 | ...
3
votes
7answers
213 views
Best/common practice to delimit values in C when printing them
I tried the search function but only found questions regarding reading in comma/space delimited files.
My question is however, how do you usually approach this. Say I have a list/array/... of values, ...
3
votes
13answers
3k views
Least used delimiter character in normal text < ASCII 128
For coding reasons which would horrify you (I'm too embarrassed to say), I need to store a number of text items in a single string.
I will delimit them using a character.
Which character is best to ...
3
votes
6answers
2k views
What is the fastest way to parse text with custom delimiters and some very, very large field values in C#?
I've been trying to deal with some delimited text files that have non standard delimiters (not comma/quote or tab delimited). The delimiters are random ASCII characters that don't show up often ...
2
votes
5answers
121 views
using multiple dates in the IN clause of a sql statement
I have function which returns a list of comma seperated dates(e.g. 'Dec 24, 2011','Dec 26, 2011','Dec 18, 2011','Dec 27, 2011'.
I am receiving this as a single string.
I want to use this string to ...
2
votes
1answer
477 views
c++ - getline with delimiter storing an empty character
I am trying to input a delimited text file with getline but when I debug it it shows me that there is an empty character at the beginning of the variable.
This is only happening with my tID variable ...
2
votes
5answers
2k views
c# datatable to csv
Could somebody please tell me why the following code is not working. The data is saved into the csv file, however the data is not separated. It all exists within the first cell of each row.
...
2
votes
1answer
257 views
Best way to approach loading a class from a comma delimited file
I am a fairly new to objective-c and to object oriented programming in general and have a theoretical, stylistic type question. What I want to do is load a table of classes with entries from a comma ...
2
votes
1answer
137 views
MySql : Break string by delimiters (^A)
I have a string that is of the:
type 'field1^Afield2^Afield3^A'
I need to break this string and get one of the fields. All the string functions I see in MySql that help you break by delimiter ...
2
votes
1answer
53 views
Is there a single regular expression to replace a number in a delimited list?
I have a string that can range from the empty string to an arbitrary list of comma delimited numbers. For example: "1,2,3"
Unfortunately as I write the code to remove an element I have a bunch of if ...
2
votes
2answers
658 views
How to generate tab-delimited txt file?
I want to use SQL SERVER 2005 commands to generate tab-delimited file. I want to create a complex query and give it to something (say a function) to export data with columns names into a ...
2
votes
2answers
2k views
Space Delimited 'Export To Text' Excel Macro Issue
I have the below vba macro to Export the selected cells into a text file. The problem seems to be the delimiter.
I need everything to be in an exact position. I have each column's width set to ...
1
vote
2answers
195 views
Possible to export COBOL VISION database to comma delimited .csv?
We have a system based on AcuCobol and vision-files.
We need to dump the entire datafiles in to txt-based files to be imported in to a sql server.
We are using vutil to dump the data right now, but ...
1
vote
1answer
27 views
Inserting records from a table with deliminated strings
I have a table structure that contains a identifier column and a column that contains a deliminated string. What I would like to achieve is to insert the deliminated string into a new table as ...
1
vote
3answers
289 views
How to import Text Delimited File to SQL Database?
In general I know how to import tab delimited file or comma delimited file. One of my client sent me delimited file. Example you can see below. And I don't how to import it without quotes.
...
1
vote
1answer
156 views
Create delimited string from a row in stored procedure with unknown number of elements
Using SQL Server 2000 and Microsoft SQL Server MS is there a way to create a delimited string based upon an unknown number of columns per row?
I'm pulling one row at a time from different tables and ...
1
vote
2answers
785 views
How do I get the javascript split function to extract null values from a delimited string
I'm trying to parse a delimited string using the javascript split function. I'm using a double character delimiter.
So for e.g. if the string contains employee related data with the following fields:
...
1
vote
1answer
116 views
Can I define flex tokens during runtime?
I'd like to use lex/yacc to read in a delimited text file. This would be pretty trivial stuff for a parser, but different text files have different delimiters, so I'd like to let the user specify ...
1
vote
9answers
341 views
How to split a user-generated string which may contain the delimitter?
I'd like to String.Split() the following string using a comma as the delimitter:
John,Smith,123 Main Street,212-555-1212
The above content is entered by a user. If they enter a comma in their ...
1
vote
6answers
127 views
Delimiting User Input
What is the best character to use to delimit user input?
For example if a user has an infinite number of textboxes to type things into, but each textbox's value will be concatenated into a single ...
1
vote
5answers
3k views
Can't Separate Text File By Delimiter |
I am using C#.
I am trying to pull in a text file to an object. I am using an ODBC connection and it looks like this
Driver={Microsoft Text Driver (*.txt; ...
0
votes
2answers
20 views
What can I do with an inconsistent column delimited text file?
I have a text file that looks something like...
firstname:middle:lastname
firstname:middle:lastname
firstname:lastname
firstname:middle:lastname
firstname:lastname
I would like to be able to ...
0
votes
1answer
57 views
Which PHP Array Function Should Be Used To Match a String to the First Part of a Delimited Line and Return the Second Part of the Delimited Line
Which php array function should be used to match a string to the first part of a delimited line and return the second part of the delimited line? The reason I am using an array is because I have many ...
0
votes
4answers
91 views
C++ Load text file, optimization [closed]
There is my source code loading text file and delimitting each line to single items (words).
How to further optimize the code? Testing empty lines (and other constructions) are (in my opinion) a ...
0
votes
2answers
33 views
delimiting data in a mysql database without exporting it
Is it possible to Delimit data in a mysql database row?
I have data which exceeds about 2million entries, so exporting to csv, and doing it manually is not working as database is refusing to dump ...
0
votes
1answer
113 views
Windows Phone 7.1 (mango dev) - Code-first creating a SQL CE from delimited text
Alright, background:
I've got an app, it has a local read-only reference database (lets call it "local.sdf") included in the source. Now, the user will be reaching out to a website (call it ...
0
votes
3answers
21 views
How to delimit a variable name in a string
I want to set the attribute ref_id with "_0" suffixed, but
<xsl:attribute name="ref_id" select="$id_0" />
is parsed as variable name: id_0, not variable name id, plus string _0.
How to I ...
0
votes
0answers
80 views
What is the accepted file extension to use for pipe delimited files?
I am parsing a file of data whose fields are separated by pipes. The records are separated by newlines. This is similar to a CSV file or even a TSV file (http://www.cs.tut.fi/~jkorpela/TSV.html), but ...
0
votes
1answer
101 views
Microsoft Access 2007 with VBA - Parse Textbox, vbCrLf delimited
Through some cruel twist of fate I have landed a job maintaining a system built entirely on Microsoft Access 2007.
Anyway, I have a TextBox on a Form. I want to parse the contents of this TextBox. I ...
0
votes
4answers
89 views
Get the nth string of text between 2 separator characters
I have a long string of text delimited by a character (pipe character). I need to get the text between the 3rd and 4th pipes. Not sure how to go about this...
Open to regex or non-regex, whichever is ...
0
votes
2answers
170 views
php regex to match string in pipe delimited text
This is an example line in the document I am processing:
2011-08-08|M|Misc Info|6PM|Away vs. First Words, Second String, Third|Other Info
I would like to get everything between "Away vs." and ...
0
votes
3answers
168 views
A better way to parse integer values from a T-SQL delimited string
I have a SQLServer2008 R2 Stored Procedure that contains an algorithm for parsing out integers from a delimited string.
Here's an example of the SQL code that I made for looping through the delimited ...
0
votes
4answers
487 views
How to Iterate Through Values in Properties File in Java
so I was wondering if anyone knew how I would go about reading in mutliple values from a key, delimiting them by commas and storing them to an arraylist from a properties file in java?
I have a ...
0
votes
0answers
77 views
Software or script to merge .csv/.tsv files that can have mismatched column names?
I have some files that I'd like to merge. They can be either .tsv files or .csv files (with double quotes as the text delimiter), and they may not have the exact same column names. For instance I have ...
0
votes
1answer
99 views
Editing A Pipe Delimited File With C++?
I am using Visual Studio 6 and want to read a pipe delimited file, edit some fields and save the file. What would be the best approach for this? Could ADO help me for example? Or maybe Boost? Although ...
0
votes
0answers
222 views
Pipe Delimited with Header and Footer?
I need to create a pipe delimited text file export from a sql table. I know how to do that, but I also need to add a header with the filename and a footer with the record count.
I have no idea how ...
0
votes
2answers
222 views
Delimit SQL Server output using custom string
I am running a job in MS SQL Server that outputs a text file with white space in between columns. What I'd like to do is specify a specific character sequence between each column as a delimiter.
For ...
0
votes
1answer
349 views
C# - Query Multiple Comma Delimited Value Search Parameters w/ String Splitter
Requirement: I have a windows application written in C# that currently will only search a .CSV file by 1 Corp value (ex: Search by Corp: 160) and I want it to search multiple Corp values seperated by ...
0
votes
3answers
333 views
Parsing a Comma Delimited File With Python and adding currency fields
I'm trying to use Python to parse a comma delimited file with a layout similar to this:
AccountNumber,Invoice_Number,Gross_Amt,Adjustments,TotalDue
"234","56787","19.37",,"19.37"
...
0
votes
2answers
315 views
Take a multi-delimited string in MySQL and convert to multiple records
I am converting an old dataset into a newly structured database. Currently they have data in this format:
[quantity int]~[var1 string]|[var2 string optional]|[var3 string optional];(etc);
...
0
votes
1answer
384 views
In Excel, using VBA — how do I import and insert data from a delimited file? (sample code & data)
I've got a sheet setup with the following VBA:
Sub PrintPDF()
Application.DisplayAlerts = False
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
...