Questions tagged [delimited]
221 questions
2
votes
2 answers
Merge tab delimited text files into a single file
What is the easiest method for joining/merging all files in a folder (tab delimited) into a single file? They all share a unique column (primary key). Actually, I only need to combine a certain column and link on this primary key, so the output file…

Bill D
- 143
- 3
- 11
2
votes
1 answer
How to automate export of multiple tables to delimited text in SSIS?
I am trying to create some sort of automation whereby I can generate a series of pipe-delimited text extracts for about 100 different tables each month. Each extract would be based on a simple query like this:
SELECT *
FROM tablename
WHERE AsOfDate…

RMQ1447
- 21
- 1
2
votes
1 answer
Oracle - How to write Query to return column header name with pipe delimited?
I want a Query to return the header name with pipe delimited. I found some reference online but couldn't get exactly what I want.
I want something return like this, not need to output for a file, just a query…

azCats
- 153
- 13
2
votes
3 answers
Excel 2010 VBA - Split String by Comma, Skip Blank Results
I am using the following code to chop up a column of comma-separated lists and to return each entry in a new row:
Sub SliceNDice()
'
' Splits the locations cells according to commas and pushes to new rows
' Code courtesy of brettdj…

Anders Kilmark
- 35
- 4
2
votes
4 answers
Split strings by different delimiting character sequences
I have the following strings, that comes with the format country: Cum name, Extra info.
Asia: Asian Cup - Play Offs
Asia: Asian Cup
Asia: World Cup - Qualification - First Stage
Australia: A-League
Belgium: Jupiler League - Championship…

KodeFor.Me
- 13,069
- 27
- 98
- 166
2
votes
2 answers
Parsing large delimited files with dynamic number of columns
What would be the best approach to parse a delimited file when the columns are unknown before parsing the file?
The file format is Rightmove v3 (.blm), the structure looks like this:
#HEADER#
Version : 3
EOF : '^'
EOR :…

annelie
- 2,569
- 6
- 25
- 39
2
votes
2 answers
Get a comma separated list of first cell values for rows with classname (using Jquery)?
Trying to grab ids from the table below when a row is selected. For example, the jquery should return: "12,14"..My code below returns empty string?
My html:
ID | …
---|