Hi
I need to obtain as output the time %H:%M:%S but without the decimal for second
So the final result must be 11:05:01 instead of 11:05:01.002
thx
Francesco
Hi
I need to obtain as output the time %H:%M:%S but without the decimal for second
So the final result must be 11:05:01 instead of 11:05:01.002
thx
Francesco
Unfortunately you cannot get a timestamp without decimal seconds, but you can use a StringReplacer to remove them with the following regular expression:
\.\d*$
Hi David
thx I've already found this workoraund in the forum so I'll use it.
Francesco