vote up 1 vote down star

What is the best character to use to delimit user input?

For example if a user has an infinite number of textboxes to type things into, but each textbox's value will be concatenated into a single database field, what is the safest character to delimit each input?

I think it should be a character not on your typical keyboard. Is there a character out there just for this?

flag

6 Answers

vote up 8 vote down check

You could use one of the ASCII control characters. There's one called "Record Separator" which has a hex value of 0x1E that might fit your needs.

Edit: Incidentally, if you want to do a proper job, you should probably ensure that \x1E is escaped in user input. One way to do this would be to use another ASCII control character: \x1B which is the "escape" control code. Thus, "\x1E" in input becomes "\x1B\x1E" and "\x1B" becomes "\x1B\x1B".

Keep in mind, of course, that because these are non-printing control codes, they can't be displayed. If you want a printable representation, you might want to go with a normal character like the comma and just escape it from input.

link|flag
What about for Unicode? – Ronnie Overby May 20 at 14:30
3  
What about it? ASCII occupies the first 128 code points of Unicode, meaning that any ASCII character is the same in Unicode. – DK May 20 at 14:32
Oh yeah. Duh . – Ronnie Overby May 20 at 14:33
1  
+1 for advocating escaping the sequence. ANYTHING can be typed if you're not validating your input to remove it. Using an escape sequence is the only safe way. But that said, the right way to do this is to not try to store multiple values in one DB column... why don't you create a table for them and make them one row per value? – rmeador May 20 at 15:24
vote up 0 vote down

use ♥ ftw

link|flag
ftw ? – Ronnie Overby May 20 at 14:47
ftw stands for 'For the win' :) – Dmitri Farkov May 20 at 14:51
vote up 0 vote down

Any markup language will do for this. They're a little verbose but at least they'll be future proofing your field.

link|flag
vote up 2 vote down

I guess one approach is to use a comma, and then to escape commas within the user input. It's probably not safe to assume any character (or even a sequence of characters) can't appear in user input -- if you can enter it in your code, then there's a way the user can enter it into a text box!

link|flag
vote up 0 vote down

How about a combination of keys? e.g.

|::|

so

this|::|and|::|that. Plus Those:Here and there.|::|Even this|that works
link|flag
It can be typed. – Ronnie Overby May 20 at 14:31
Oh for sure... but the likelyhood is much less than a single character. e.g. pipe. The "Record Separator" is likely the way to go. – scunliffe May 20 at 16:58
vote up 1 vote down

Normally commas or semi-colons are used for splitting data. What about | which the average user never uses?

link|flag
But it is possible for all of those characters to be typed by the user. I have thought about a pipe or 2 pipes, but I would like to find something that couldn't be typed. – Ronnie Overby May 20 at 14:29
1  
Well anything can be typed. You could use some jQuery or Javscript to block that character from being entered. – James Brooks May 20 at 14:40
True. But I can still outrun the average goat. – Ronnie Overby May 20 at 14:41
Which is exactly what the | (pipe) will do. – James Brooks May 21 at 9:37
It all becomes so clear. – Ronnie Overby May 21 at 11:01

Your Answer

Get an OpenID
or

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