"JB" <x@no.email> wrote in message
news:1216654807531-747929@exchange.ni.com...
> Wiebe@CARYA a écrit:
> Try "%[^,],%d,%d,%d". %[^,] scans all characters that are not ",".With
this unique format specifier for Format Into String and Scan from String, an
error will appear if the input string contains a comma or is empty (the last
case is also true with the original code). Distinct specifiers may be needed
to avoid this.
Yes, comma's might not be the best seperator. It will also fail if the
numbers use "," as seperators (as is often the case in Europe)...
But the same can be said for any seprator... If you use tabs as seperator,
the parsing will fail if the string contains tabs...
Regards,
Wiebe.