Forum Moderators: coopster
However the data contains commas and pipes "¦". I usually use the ¦ as my delimiter.
Before I upload the data I wanted to remove dupes which happen to be text/blob fields. I usually do this in access.
I thought I could get around this by using quotes as a text qualifier. It didn't seem to work. My other method I usually try is to use some combination of characters like <¦¦> as a delimeter.
However Access only allows one character as a delimeter and phpmyadmin only allows two characters as the delimeter.
Any ideas how to work around this?
~
No one ever uses it except in dumb user directory URLs and cute e-mail signatures.
Or you could test the range of valid characters by using one of those funny foreign letters:
ø ÿ ñ ¥ ¿
If you're dealing with HTML-bound text, try changing your commas into entity characters before storing them:
"," => ","
... then use commas as your delimiter. When the text is displayed, your "," is changed back into a ","
Good luck!