I have a field in a table with varchar data type which contains the time as 1800+0100, how can I show it like this 19:00 GMT? Is there any C# method which takes the time as 1800+0100 and converts to 19:00?
Thanks in advance. Any help would be greatly appreciated.
If your time is actually in ISO-8601 format then you can do this:
But notice that this (correctly) outputs "17:00:00", not "19:00:00".
If your string isn't in ISO-8601 format -- and "1800+0100" really is meant to represent 19:00 GMT -- then you'll need to parse the string manually, or maybe pre-process it before passing it to
ParseExact
. Possibly something like this: