help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Storing hours, minutes, seconds, and nanoseconds from format-time-st


From: Stephen Berman
Subject: Re: Storing hours, minutes, seconds, and nanoseconds from format-time-string
Date: Tue, 06 Dec 2022 11:19:43 +0100
User-agent: Gnus/5.13 (Gnus v5.13)

On Tue, 06 Dec 2022 09:23:24 +0000 Heime <heimeborgia@protonmail.com> wrote:

> I am getting the time using the format "%FT%T.%N%z".
>
> (format-time-string "%FT%T.%N%z" nil tzone)
>
> From the result I need to get the hours, minutes, seconds,
> and nanoseconds to store them into four numeric variables.
>
> How can I do this from the output of "format-time-string".

You can pass the output to string-split, splitting on non-digits,
i.e. using "[^[:digit:]]" as the value of the SEPARATORS argument.

Steve Berman



reply via email to

[Prev in Thread] Current Thread [Next in Thread]