Question

DateTimeConverter


Badge +11

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

 

image 

thx

 

Francesco


2 replies

Userlevel 4

Unfortunately you cannot get a timestamp without decimal seconds, but you can use a StringReplacer to remove them with the following regular expression:

\.\d*$

 

image

Badge +11

Hi David

thx I've already found this workoraund in the forum so I'll use it.

 

Francesco

Reply