Top "Delimited-text" questions

c# datatable to csv

Could somebody please tell me why the following code is not working. The data is saved into the csv file, …

c# csv delimited-text
Append to Text File VBA

I need to take values from a selected range to a comma delimited text file and append them. The code …

vba excel delimited-text
Converting a Bash array into a delimited string

I would like to know the following; Why the given non-working example doesn't work. If there are any other cleaner …

arrays string bash delimited-text
import text to pandas with multiple delimiters

I have some data that looks like this: c stuff c more header c begin data 1 1:.5 1 2:6.5 1 3:5.3 I want to import …

python import pandas delimited-text
Reading data from text file and delimiting

I have an Excel 2010 spreadsheet, and I am reading in information from a .txt file (and another .xls file in …

vba excel text-files delimited-text
Parse a comma delimited field into seperate fields (MS ACCESS VBA 2003)

I inherited a database where user input fields are stored as a comma delimited string. I know. Lame. I want …

ms-access vba comma delimited-text
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 …

sql-server sql-server-2008 delimited-text
Using CROSS APPLY for more than one column

Day #3 with SQL Server. I am trying to combine 2 columns of delimited data into one output from a Table Valued …

sql-server-2008 tsql ssms delimited-text cross-apply
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 …

java properties iterator arraylist delimited-text
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 …

c# string delimited-text arrays