vote up 3 vote down star

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 use for this, i.e. which character is the least likely to appear in text? Must be printable and probably less than 128 in ASCII to avoid locale issues.

flag
Dare to retag: lol – phihag Jan 29 at 15:37
Please don't be embarrased. You should ignore all the people who say "ooh, that's a crap way, do this instead". It's not for responders to question why, it for them to answer how. I don't care why you're in this position. I've been in a few myself. Good luck! – IainMH Jan 29 at 15:43

11 Answers

vote up 2 vote down check

Assuming for some embarrassing reason you can't use CSV I'd say go with the data. Take some sample data, and do a simple character count for each value 0-127. Choose one of the ones which doesn't occur. If there is too much choice get a bigger data set. It won't take much time to write, and you'll get the answer best for you.

The answer will be different for different problem domains, so | (pipe) is common in shell scripts, ^ is common in math formulae, and the same is probably true for most other characters.

I personally think I'd go for | (pipe) if given a choice but going with real data is safest.

And whatever you do, make sure you've worked out an escaping scheme!

link|flag
vote up 0 vote down

This can be good or bad (usually bad) depending on the situation and language, but keep mind mind that you can always Base64 encode the whole thing. You then don't have to worry about escaping and unescaping various patterns on each side, and you can simply seperate and split strings based on a character which isn't used in your Base64 charset.

I have had to resort to this solution when faced with putting XML documents into XML properties/nodes. Properties can't have CDATA blocks in them at all, and nodes escaped as CDATA obviously cannot have further CDATA blocks inside that without breaking the structure.

CSV is probably a better idea for most situations, though.

link|flag
vote up 0 vote down

I don't think I've ever seen an ampersand followed by a comma in natural text, but you can check the file first to see if it contains the delimiter, and if so, use an alternative. If you want to always be able to know that the delimiter you use will not cause a conflict, then do a loop checking the file for the delimiter you want, and if it exists, then double the string until the file no longer has a match. It doesn't matter if there are similar strings because your program will only look for exact delimiter matches.

link|flag
vote up 1 vote down

You said "printable", but that can include characters such as a tab (0x09) or form feed (0x0c). I almost always choose tabs rather than commas for delimited files, since commas can sometimes appear in text.

(Interestingly enough the ascii table has characters GS (0x1D), RS (0x1E), and US (0x1F) for group, record, and unit separators, whatever those are/were.)

If by "printable" you mean a character that a user could recognize and easily type in, I would go for the pipe | symbol first, with a few other weird characters (@ or ~ or ^ or \, or backtick which I can't seem to enter here) as a possibility. These characters +=!$%&*()-'":;<>,.?/ seem like they would be more likely to occur in user input. As for underscore _ and hash # and the brackets {}[] I don't know.

link|flag
vote up 0 vote down

We use ascii 0x7f which is pseudo-printable and hardly ever comes up in regular usage.

link|flag
vote up 1 vote down

Pipe for the win! |

link|flag
vote up 1 vote down

Well it's going to depend on the nature of your text to some extent but a vertical bar 0x7C doesn't crop up in text very often.

link|flag
vote up 0 vote down

You're probably going to have to pick something and ignore it's other uses.

+

might be a good candidate.

link|flag
vote up 2 vote down

Probably | or ^ or ~ you could also combine two characters

link|flag
vote up 11 vote down

How about you use a CSV style format? Characters can be escaped in a standard CSV format, and there's already a lot of parsers already written.

link|flag
I like this better than my idea. +1. – IainMH Jan 29 at 15:40
I think a comma counts as common character in normal text. If it were as simple as using CSV I doubt there'd be a need to ask the question... – Jay Jan 29 at 15:43
Commas can be escaped in a CSV format, however. – Alex Fort Jan 29 at 15:45
csv deals with commas in normal text as well as a few other issues. So it dosn't matter that there is a comma allready in the text. IIRC it puts text in quotes and escapes quotes. – Jeremy French Jan 29 at 15:46
@Jeremy: exactly right. Here's a wikipedia article mentioning how the escaping scheme works: en.wikipedia.org/wiki/Comma-separated_values/… – rmeador Jan 29 at 16:28
show 2 more comments
vote up 4 vote down

Can you use a pipe symbol? That's usually the next most common delimiter after comma or tab delimited strings. It's unlikely most text would contain a pipe, and ord('|') returns 124 for me, so that seems to fit your requirements.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.