Top "Delimiter" questions

A delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions in plain text or other data streams.

SQL split values to multiple rows

I have table : id | name 1 | a,b,c 2 | b i want output like this : id | name 1 | a 1 | b 1 | c 2 | b

mysql sql delimiter delimiter-separated-values
How to specify more spaces for the delimiter using cut?

Is there any way to specify a field delimiter for more spaces with the cut command? (like " "+) ? For example: In …

linux delimiter cut
How to make the 'cut' command treat same sequental delimiters as one?

I'm trying to extract a certain (the fourth) field from the column-based, 'space'-adjusted text stream. I'm trying to use the …

bash unix delimiter cut
Split comma separated column data into additional columns

I have comma separated data in a column: Column ------- a,b,c,d I want to split the comma …

postgresql split delimiter postgresql-8.4
Eclipse and Windows newlines

I had to move my Eclipse workspace from Linux to Windows when my desktop crashed. A week later I copy …

eclipse newline delimiter
Can you use a trailing comma in a JSON object?

When manually generating a JSON object or array, it's often easier to leave a trailing comma on the last item …

json syntax delimiter
How to use delimiter for csv in python

I'm having trouble with figuring out how to use the delimiter for csv.writer in Python. I have a csv …

python csv delimiter
Hive load CSV with commas in quoted fields

I am trying to load a CSV file into a Hive table like so: CREATE TABLE mytable ( num1 INT, text1 …

hadoop hbase hive hdfs delimiter
Python split() without removing the delimiter

This code almost does what I need it to.. for line in all_lines: s = line.split('>') …

python split delimiter
Delphi: StringList Delimiter is always a space character even if Delimiter is set

I am having trouble with the delimiter in the TStringList Class. Take a look: var s: string; sl: TStringList; begin …

delphi delphi-7 delimiter tstringlist