as said before, problem is not on separators, but on the way it is used.
1. if I use other field separators than the ones suggested (; instead of ~~), it does not work, so, all separators are not configurable. anyway doesn't really matter.
2. usual csv is :
title ~~ text ~~ textfield3 ~~ emailfield6 ~~ weblinkfld8 ~~ single_value_field22 ~~ multi_value_field24
title 1 ~~ description 1 ~~ textfield3 value ~~ [-email-]=usera@somedomain.com!![-text-]=usera ~~
www.somedomaina.com
~~ f22_valuea ~~ f24_value01%%f24_value02%%f24_value03
and not
title ~~ text ~~ textfield3 ~~ emailfield6 ~~ weblinkfld8 ~~ single_value_field22 ~~ multi_value_field24
~~ title 1 ~~ description 1 ~~ textfield3 value ~~ [-email-]=usera@somedomain.com!![-text-]=usera ~~
www.somedomaina.com
~~ f22_valuea ~~ f24_value01%%f24_value02%%f24_value03
Do you see the difference ?
in the import function we have to add on all item separators before the item itself.
this is a manual operation which :
- make lose time
- can be root cause of importations errors
- create issue when I need to modify the CSV with table programm as open office for exemple.
so, first question is, whatever the separator used, how can we avoid this phenomen and import usual csv ?
Then second question is for the weblinks, I cannot make it work. Can you see any error in the syntax ?
thx a lot for your dedicated time !