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.

Split a string into words by multiple delimiters

I have some text (meaningful text or arithmetical expression) and I want to split it into words. If I had …

c++ string token delimiter
Capturing output of find . -print0 into a bash array

Using find . -print0 seems to be the only safe way of obtaining a list of files in bash due to …

arrays bash null find delimiter
What does the random string after a WebKitFormBoundary do \ mean?

I'm trying to use a BI tool to automate a process which extracts data from our DB system, and then …

webkit delimiter
How can I split by 1 or more occurrences of a delimiter in Python?

I have a formatted string from a log file, which looks like: >>> a="test result" That is, …

python string split delimiter
How do I explode an integer

the answer to this could be easy. But I'm very fresh to programming. So be gentle... I'm at work trying …

php arrays integer delimiter explode
MySQL: Split comma separated list into multiple rows

I have an unnormalized table with a column containing a comma separated list that is a foreign key to another …

mysql sql delimiter delimiter-separated-values
Split multiple delimiters in Java

How I can split the sentences with respect to the delimiters in the string and count the frequency of words ? …

java split count delimiter frequency
How to use cut with multiple character delimiter? unix

My file looks like this abc ||| xyz ||| foo bar hello world ||| spam ham jam ||| blah blah I want to extract …

sed delimiter cut
Extract characters to the right of a delimited value in a SELECT statement

I need to extract all the characters to the right of a hyphen as part of a select statement. There …

sql sql-server select delimiter
JS string.split() without removing the delimiters

How can I split a string without removing the delimiters? Let's say I have a string: var string = "abcdeabcde"; When …

javascript split delimiter