11-21-2017 06:22 AM
With LabVIEW built in "Scan from string" function you can decode hexadecimal strings with "%X" format specifier.
The data type is set to U32 (8 characters) by default. I have to scan U64 (16 characters) strings.
Is there a possibility to configure the "Scan from string" function to scan and generate 64-bit integer values? Something like "%LX" as format specifier?
I can parse it on my own, but I would prefer an built in functionality.
Thanks for any ideas
Stefan
Solved! Go to Solution.
11-21-2017 06:45 AM
Yes.
Use %16x as the format specifier and wire a 0 in U64 format into the "default value 1" box,
That shoult return you the correct u64 as expected.
0xDEAD
11-21-2017 06:49 AM
Thanks, I normally not use the default input of the function. This should solve my problem.