06-15-2012 07:21 AM
Press <ctrl> + h to bring up the context help for any VI. You can then click on "detailed help" to get a more in-depth description.
If you do this then you'll see exactly what has to be wired to format string.
-CC
06-15-2012 09:06 AM
thanks that i got some idea but still i cannot able to read what i want i can seperate just upto 2 decimal what can be done for data like: 0.000275 0 22555 2555 with this vi i can only read upto 2nd position .
06-15-2012 09:22 AM - edited 06-15-2012 09:24 AM
Hi kalu,
you really should read the help on those format codes. "%10.6s" doesn't make any sense, especially when combined with a DBL typed array!
See the attachment on how to split your data at colons.
You have to convert the 2nd column individually for each element as you have mixed up standard decimal numbers with strings (yes, 0x000F is just a string to LabVIEW) with 1D arrays of float numbers...
Hint:
Instead of placing a big comment on the FP you could just copy that text into your string control and make it "default data"...
06-15-2012 09:28 AM
thank you so much