Tagged Questions
The delimiter tag has no wiki summary.
17
votes
3answers
4k views
Python: Split string with multiple delimiters
I found some answers online, but I have no experience with regular expressions, which I believe is what is needed here.
I have a string that needs to be split by either a ';' or ', '
That is, it has ...
10
votes
10answers
9k views
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 the possibility of filenames containing spaces, newlines, quotation marks etc.
However, I'm having a ...
10
votes
14answers
789 views
Why don't popular programming languages use some other character to delimit strings? [closed]
Every programming language I know (Perl, Javascript, PHP, Python, ASP, ActionScript, Commodore Basic) uses single and double quotes to delimit strings.
This creates the ongoing situation of having to ...
7
votes
7answers
11k views
Delphi - How do I split a string into an array of strings based on a delimiter?
I'm trying to find a Delphi function that will split an input string into an array of strings based on a delimiter. I've found a lot on Google, but all seem to have their own issues and I haven't been ...
6
votes
2answers
8k views
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
sl := TStringList.Create;
s := 'Users^foo bar^bar foo^foobar^barfoo';
...
6
votes
5answers
4k views
MySQL DELIMITER syntax errors
This MySQL script installs multiple triggers.
It works on one machine running MySQL 5.0.51b-community. On another machine running MySQL 14.12 Distrib 5.0.45, for redhat-linux-gnu (i386) it fails, ...
5
votes
4answers
880 views
Python: Split by 1 or more occurrences of a delimiter
I have a formatted string from a log file, which looks like:
>>> a="test result"
That is, the test and the result are split by some spaces - it was probably ...
4
votes
2answers
135 views
Java CSV parser with string separator (multi-character)
Is there any Java open source library that supports multi-character (i.e., String with length > 1) separators (delimiters) for CSV?
By definition, CSV = Comma-Separated Values data with a single ...
4
votes
6answers
182 views
Split a string by word using one of any or all delimiters?
I may have just hit the point where i;m overthinking it, but I'm wondering: is there a way to designate a list of special characters that should all be considered delimiters, then splitting a string ...
4
votes
5answers
559 views
C# - Splitting on a pipe with a an escaped pipe in the data?
I've got a pipe delimited file that I would like to split (I'm using C#). For example:
This|is|a|test
However, some of the data can contain a pipe in it. If it does, it will be escaped with a ...
4
votes
1answer
422 views
Perl split function - consecutive delimiters
I am using the split function to split each record in a file. Say, the delimiter is $.
my @fields = split(/\$/,$record);
If each record has 4 fields, and if some fields are empty, there are 2 ...
4
votes
6answers
246 views
Properly delimiting strings in C
I'm wondering, what would be a good/efficient way to delimit a string that can contain basically any character. so for instance, I need to concatenate n strings that can look like:
char *str_1 = ...
4
votes
3answers
536 views
How to programmatically guess whether a CSV file is comma or semicolon delimited
In most cases, CSV files are text files with records delimited by commas. However, sometimes these files will come semicolon delimited. (Excel will use semicolon delimiters when saving CSVs if the ...
4
votes
5answers
283 views
How can I make this work with every delimiter? - C++
I just wrote a program that tokenizes a char array using pointers. The program only needed to work with a space as a delimiter character. I just turned it in and got full credit, but after turning it ...
4
votes
2answers
749 views
MySQL/phpMyAdmin freezes from DELIMITER
Running this procedure causes MySQL (or phpMyAdmin) to freeze. I have to stop MySQL with from XAMPP command, which freezes and "is not responding" about 20 seconds before stopping. I believe this is ...
4
votes
7answers
8k views
How do I extract lines between two line delimiters in Perl?
I have an ASCII log file with some content I would like to extract. I've never taken time to learn Perl properly, but I figure this is a good tool for this task.
The file is structured like this:
...
3
votes
4answers
99 views
bash string to array with spaces and extra delimiters
I'm trying to create arrays from strings that have pipe ("|") as delimiters and include spaces. I've been looking around for a while and I've gotten close thanks to sources like Split string based on ...
3
votes
4answers
73 views
Standard (or convenient) method to read and write tabular data to a text file in c
This might sound rather awkward, but I want to ask if there is a commonly practiced way of storing tabular data in a text file to be read and written in C.
Like in python you can load a full text ...
3
votes
2answers
59 views
preg_match Delimiter error
Good day,
I have read about 25 different articles talking about adding a "/" or a "~" etc.., for a delimiter but to no avail with this line of code. Everything I have tried it still gives me a ...
3
votes
4answers
22 views
Delimiting binary sequences
I need to be able to delimit a stream of binary data. I was thinking of using something like the ASCII EOT (End of Transmission) character to do this.
However I'm a bit concerned -- how can I know ...
3
votes
5answers
174 views
Java delimiter while reading text file - regex/or not?
I am trying to read a text file written in this form:
AB523:[joe, pierre][charlie][dogs,cat]
ZZ883:[ronald, zigomarre][pele]
I would like to create my structure and retrieve the information ...
3
votes
1answer
65 views
How can I place delimiters between numbers and text in Python?
I'm having trouble placing delimiters in the following text. I want to place a '|' between the text and between each of the 3 subsequent numbers. The problem is that sometimes the numbers are ...
3
votes
3answers
259 views
String split with delimiter in C#/ASP.Net
If I do this:
string text = "Hello, how are you?";
string[] split = text.Split('h', 'o');
How do I get a list of what delimiter was used between each split? I'm trying to recreate the string as ...
3
votes
3answers
146 views
Regex for multiple MAC addresses separated by comma?
I would like to know the correct regex for matching multiple MAC addresses separated my any delimiter, such as a comma.
The regex for a single MAC address would be: ...
3
votes
3answers
440 views
Split a string with multiple delimiters in Ruby
Take for instance, I have a string like this:
options = "Cake or pie, ice cream, or pudding"
I want to be able to split the string via or, ,, and , or.
The thing is, is that I have been able to do ...
3
votes
1answer
109 views
My SQL: rewriting comma delimited data to a structured table
I have a table which consists of the headings Category and Subcategories Within the subcategories heading for each category I have a comma separated list of subcategories.
I would like to rewrite the ...
3
votes
4answers
447 views
Java String quote delimiter
Is there any way in Java to use a special delimiter at the start and the end of a String to avoid having to backslash all of the quotes within that String?
i.e. not have to do this:
String s = ...
3
votes
7answers
213 views
Best/common practice to delimit values in C when printing them
I tried the search function but only found questions regarding reading in comma/space delimited files.
My question is however, how do you usually approach this. Say I have a list/array/... of values, ...
3
votes
3answers
233 views
How to strip variable spaces in each line of a text file based on special condition - one-liner in Python?
I have some data (text files) that is formatted in the most uneven manner one could think of. I am trying to minimize the amount of manual work on parsing this data.
Sample Data :
Name ...
3
votes
2answers
938 views
C# List<string> to string with delimiter
This is my first question so hello to all users!
Is there a function in C# to quickly convert some collection to string and separate values with delimiter?
For example:
List<string> names --> ...
3
votes
2answers
270 views
How to skip extra lines before the header of a tab delimited delimited file in R
The software I am using produces log files with a variable number of lines of summary information followed by lots of tab delimited data. I am trying to write a function that will read the data from ...
3
votes
3answers
505 views
Replacing delimiter characters in file path
I'm developing a C# web application in VS 2008. I let the user select an input file and then I store the file path in a string variable. However, it stores this path as "C:\\folder\\...". So my ...
3
votes
2answers
942 views
Is There An Efficient Whole Word Search Function in Delphi?
In Delphi 2009 or later (Unicode), are there any built-in functions or small routines written somewhere that will do a reasonably efficient whole word search where you provide the delimiters that ...
3
votes
5answers
559 views
Writing a stream protocol: Message size field or Message delimiter?
I am about to write a message protocol going over a TCP stream. The receiver needs to know where the message boundaries are.
I can either send 1) fixed length messages, 2) size fields so the ...
3
votes
6answers
2k views
Delimiter to use within a query string value
I need to accept a list of file names in a query string. ie:
http://someSite/someApp/myUtil.ashx?files=file1.txt|file2.bmp|file3.doc
Do you have any recommendations on what delimiter to use?
3
votes
13answers
3k views
Least used delimiter character in normal text < ASCII 128
For coding reasons which would horrify you (I'm too embarrassed to say), I need to store a number of text items in a single string.
I will delimit them using a character.
Which character is best to ...
2
votes
3answers
67 views
Java best practice for avoiding delimiter collisions?
I have a number of Strings that I have to store in a DB that I'd like to split using String.split method later. However, I'm concerned about delimiter collisions since at least one field could ...
2
votes
1answer
66 views
Splitting string with regexp in Perl when delimeter appears in the beginning of the string
I want to split a string using regular expressions but I have run into some problem. I have this string:
$text=" one two three";
Then I try to split it into alphabetic words:
#@words=split(" ", ...
2
votes
4answers
155 views
Python split() without removing the delimiter
This code almost does what I need it to..
for line in all_lines:
s = line.split('>')
Except it removes all the '>' delimiters.
So,
<html><head>
Turns into
...
2
votes
4answers
87 views
Asp.net delimiter <% replaced with <% in head tag?
Maybe its a stupid question, but i'm having this issue in Visual Studio 2010:
in my Master page i've this code:
<head runat="server">
<title>App Title</title>
...
2
votes
1answer
195 views
Split a string into words by multiple delimiters in C++
I have some text (meaningful text or arithmetical expression) and I want get it and put different words into a vector.
If I had certain delimiter, I'd use:
std::stringstream ...
2
votes
1answer
261 views
Problems with space character in Bash cut command when using a different delimiter
I have set | to be the delimiter for a cut command, but space characters seem to still be interpreted as a delimiter too.
Here's my test script:
people[1]="Mr|Smith"
people[2]="Mrs|Jane Brown"
for ...
2
votes
3answers
259 views
Change lines that match a pattern in between delimiters using awk
I have an input file something like this:
some line
some other line
another line
start_delimiter
interesting stuff
more interesting stuff
even more interesting stuff
end_delimiter
possibly more ...
2
votes
3answers
599 views
Using python to split a string with delimiter, while ignoring the delimiter and escape quotes inside quotes
I am trying to split a string based on the location of a delimiter (I am trying to remove comments from Fortran code). I can split using ! in the following string:
x = '''print "hi!" ! Remove me'''
...
2
votes
2answers
703 views
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 to do a quick fix for one of your customers. I want to get the total numbers of digits in a ...
2
votes
3answers
226 views
Java parsing string
I'm looking to parse the following string in java
<some lines here>
Key1:thingIWantToKnow
Key2:otherThing
Key3:bla
Key4:bla
Key5:bla
<(possibly) more lines here>
All lines end with a ...
2
votes
3answers
465 views
Using the asterisk-character as a Java Scanner Delimiter
Hey Everyone,
This question seems really silly to me, but I can't for the life of me find the answer anywhere. All I'm trying to do, is scan a string that is delimited with an asterisk (* ). However, ...
2
votes
7answers
650 views
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 I do
var newstring = string.split("d"), I get something like this:
...
2
votes
2answers
191 views
Sphinx - delimiters
I would like to know if the Sphinx engine works with any delimiters (like commas and periods in normal MySQL). My question comes from the urge, not to use them at all, but to escape them or at least ...
2
votes
1answer
75 views
Beginner PHP help needed
I have been learning PHP for some time now and I wanted one clarification.
I have seen the preg_match function called with different delimiting symbols like:
preg_match('/.../')
and
...