How to write seconds(integer) like a timer?

I googled a bit, and apparently there’s no built-in function to do that. This might help: https://answers.unrealengine.com/questions/77563/how-to-convert-game-time-format-to-000000.html

Edit: take a look at the very bottom answer, it’s really good and convenient.

Hi Guys ! I have this little issue, i have a timer in my game, for example 200 Seconds, there is a way to write 200 Seconds in a form like this 00h/03m/20s ? Thanks Guys.

Ps: Sorry for my english.

There TimeSpan variable type that has all the time calculations functions:

To make it simple simply store time using this variable type. Then use String Append or Text format to to properly format the text. In C++ Timespan have dedicated function for that:

Thanks a lot !

Thanks a lot !