01-27-2016 04:45 AM
Have this string \s-6.76\s\sg\r\n\s-6.76\s\sg\r\n (code view)
Want to split it into an array of doubles with to elements.
On on computer it works fine but on the cumpter,where I have to have it running, I got problems.
The output is not 6.76 but 6.
I set the dicimal symbol for the computer to '.'
Solved! Go to Solution.
01-27-2016 04:51 AM
your format specifier is %d which means it gets formated to an integer. Try %g
01-27-2016 04:53 AM
Posted 2 times. Sorry. Got answer