I have stored in a String type variable my_date a value retrieved from an XML file.
The my_date is in GMT and has a timezone offset that needs to be considered for the UTC conersion.
I would like to convert it (another String) but in UTC format without the timezone - for example:
String my_date = "2020-02-16T20:40:55.000+01:00"
//Convertion
String my_date_utc = "2020-02-16 21:40:55.000"