Subname: Not a sub, just a snippet of code.
Description: A code snippet to convert the current date/time into an ISO 8601 format string.
Dependencies: AHLocale
Tags: ISO8601, ISO 8601
Thanks to Corwin42 for his excellent libraries.
Description: A code snippet to convert the current date/time into an ISO 8601 format string.
B4X:
Dim dt As AHDateTime
dt.Initialize
dt.Pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
Dim ISO8601 As String
ISO8601 = dt.Format(DateTime.Now)
Tags: ISO8601, ISO 8601
Thanks to Corwin42 for his excellent libraries.
Last edited: