Click here to Skip to main content
15,884,838 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi guys,

I need help converting an UTC offset specified in the format "-hhmm" to "-hh:mm:ss" format. for Example, if my UTC offset is "-0530", the output format should be "-05:30:00"

Thanks
Posted

1 solution

Just output a :00 at the end, given that you don't have any info for seconds.

Oh, I see. I assume you're string mashing, so use the Substring method to get the parts you need and insert the : and :00 you need.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900