Hi,
I have a problem in the delimiter on m y text field...
for example the value in my field is "123,1235","3335","2351,23",1234567 include the double quotation mark..
what i want is the result is going to be like this
var[1] = "123,1235"
var[2] = "3335"
var[3] = "2351,23"
var[4] = 1234567
hope someone will help me..
0
Comments
And for import/export and how (dataport,xmlport,other)?
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
RIS Plus, LLC
Just a happy frood who knows where his towel is
"3335"
1234567
Just a happy frood who knows where his towel is
The only reliable ones that I've found are <TAB> as field separator and <None> as field start and end delimiters.
I REALLY dislike dataports by the way....
RIS Plus, LLC
But at least it is a lot better than "," or ";".
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
|To-Increase|
Did I mention that I REALLY dislike dataports?
RIS Plus, LLC
So this is an Import report & not a dataport, correct?
and you are being provided the data by someone else, correct?
do you want to retain the commas? If not delete them once in excel and resave the file as text.
But I would suggest "importing" not just opening in excel & then saving it as TAB seperated.
http://www.BiloBeauty.com
http://www.autismspeaks.org
http://mibuso.com/blogs/davidmachanick/
Below is the screenshot that i want to be in the report..
Again, hope u'll help with this..
You could try something like this
Where Text is your string that you want to break down.
Hope this helps.
I tried your code and it works... but the output is like this:
array[1] =
array[2] = "
array[3] = "3456
array[4] = "123457
array[5] = "87648391234
array[6] = "4444
instead of:
array[1] = 123456
array[2] = 123457
array[3] = 87648391234
array[4] = 44444
Try this