03-20-2006 08:52 PM - edited 03-20-2006 08:52 PM
Message Edited by cheyne on 03-20-2006 08:53 PM
03-20-2006 09:23 PM
the %.; switches off the localized decimal separator, so it is always "." (and not "," like on some european computers.)
the %f formats a floating point number and the " HZ" outpust the string "<space>HZ".
Thus if the input is a DBL 5.0 , the formatted output string would be "5.000000 HZ" everywhere. (Without the %.; at the beginning, the output would be "5,000000 HZ" e.g. In Germany.)
Check the online help, especially the page labeled "Format Specifiers Syntax Elements". 🙂
03-20-2006 11:15 PM
Hi, Thanks for answering my question,
I have tried to take out the %.; but the output seems to be the same and nothing is change. So does it matter if I don put the %.;?
03-20-2006 11:32 PM