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.

Convert Comma Separated column value to rows

I have a table Sample with data stored like below Id | String -------------- 1 abc,def,ghi 2 jkl,mno,pqr I …

sql sql-server delimiter
Replacing one character with another in a string

I have a data like below: A:B:C:D and I want to replace the C with data (say, …

excel replace extract formula delimiter
Convert commas decimal separators to dots within a Dataframe

I am importing a CSV file like the one below, using pandas.read_csv: df = pd.read_csv(Input, delimiter=";") …

python pandas csv delimiter separator
Arduino (C language) parsing string with delimiter (input through serial interface)

Arduino (C language) parsing string with delimiter (input through serial interface) Didn't find the answer here :/ I want to send …

c string parsing arduino delimiter
What's the best separator/delimiter character(s) for a plaintext db file?

What's the best separator/delimiter character(s) for a plaintext db file? I considered using |, ,, <TAB>, ;, etc. But …

database sqlite delimiter
Parse String with delimiter symbol into Array

I have a file containing lines of this type: "Andorra la Vella|ad|Andorra la Vella|20430|42.51|1.51" I basically just want …

java arrays string parsing delimiter
Convert a delimted string to a dictionary<string,string> in C#

I have a string of the format "key1=value1;key2=value2;key3=value3;" I need to convert it to a …

c# string dictionary delimiter
How to split String before first comma?

I have an overriding method with String which returns String in format of: "abc,cde,def,fgh" I want to …

java string delimiter
Can I import a CSV file and automatically infer the delimiter?

I want to import two kinds of CSV files, some use ";" for delimiter and others use ",". So far I have …

python file csv import delimiter
Multiple delimiters in Scanner class of Java

How do I use the useDelimiter() method of the Scanner class to use both the comma (,) and the new line …

java delimiter java.util.scanner