Delimiter
eg: http://www.web.com/index.asp?fruit=
let say for the fruit=, i want to put 3 items, which delimiter to seperate them is the best one?
1. |
2. ,
3. <space>
4. *
eg: http://www.web.com/index.asp?fruit=
let say for the fruit=, i want to put 3 items, which delimiter to seperate them is the best one?
1. |
2. ,
3. <space>
4. *
what is the currency delimiter when updating an access record?I keep getting errors when wrapped in 'Strange thing is only on my host do I get the errors.
View Replies View RelatedI know you can use the split function to split a comma delimited string but i want to split a string of numbers which have nothing delimiting them. Is there any way to do this?
eg split 12345
into 5 array elements of:
1
2
3
4
5
I'm submitting various form variables as arrays, so when I do try to
access them when the form is submitted, i do a split on the variable
and pop it into an array.
for example:
aDescriptions = split(request.form("strDescriptions"), ", ")
The problem however is if a description contains a comma in the text,
it throws off the split function.
Question is, is there a way to change the delimiter of the form array
to something other than a comma. Or does anyone here know a more
elegant workaround.