11-19-2017 05:49 AM
Hello everyone!
I get from some server time in string type, for examp "2017-11-17T23:36:05.188503497Z". I have found that it is RFC 3339 format. How can I convert it to LabView timestamp type?
Solved! Go to Solution.
11-19-2017 06:26 AM
But, just be aware of system decimal separator (on my PC dot "." didn't work with the time string, b/c I have comma as separator).
11-19-2017 06:05 PM - edited 11-19-2017 06:06 PM
If you prepend the format string with %.; making it:
%.;%<%Y-%m-%dT%H:%M:%S%9uZ>T
then LabVIEW will always expect a decimal point, independent on your configured system locale.