Convert 00:00 to 00:00:00

Hi all, I need to convert string variable value from 00:00 to 00:00:00.
Which method is best to use in that case?
Thanks in advance!

If is a time value you are trying to achieve or just a string value?

If string value just concatenate?

string = string +“:00”

If it is a time string as in HH:mm:ss

Then try string.(“HH:mm:ss”)

1 Like

hi @bp777

Do you want the time string to the new time string ?

1 Like

Hi @bp777

–concatenate is best just use 00:00+“:00”
– If it is variable just pass the variable and use +“:00”
check this screenshot
image

If you find it useful mark it as solution and close the thread.

cool,
Regards
Gulshiyaa

1 Like

Thanks all!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.