Hi experts,
I try to convert string "2018-10-02T00:00:00+07:00" to utcdatetime
utcDateTime dateTime = DateTimeUtil::parse("2018-10-02T00:00:00+07:00");
But I get error:
Any one help me?
Thanks all.
*This post is locked for comments
Hi experts,
I try to convert string "2018-10-02T00:00:00+07:00" to utcdatetime
utcDateTime dateTime = DateTimeUtil::parse("2018-10-02T00:00:00+07:00");
But I get error:
Any one help me?
Thanks all.
*This post is locked for comments
Hi ievgen,
I tried and successfully.
Thank you.
You can do it using .Net:
utcDateTime dateTime; boolean ok = System.DateTime::TryParse("2018-10-02T00:00:00+07:00", byref dateTime); if (ok) { info(queryValue(dateTime)); }
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,269 Super User 2024 Season 2
Martin Dráb 230,198 Most Valuable Professional
nmaenpaa 101,156