I have a string
str = "Tue, 10 Feb 2022 10:17:16 GMT"
I wanted to convert it into IST(Indian Standard Time) with similar format i.e., it should have simlar day, date, time. like this
str = "Tue, 10 Feb 2022 09:17:16 IST"
How to do it?
I have a string
str = "Tue, 10 Feb 2022 10:17:16 GMT"
I wanted to convert it into IST(Indian Standard Time) with similar format i.e., it should have simlar day, date, time. like this
str = "Tue, 10 Feb 2022 09:17:16 IST"
How to do it?