We are doing a POC in capturing outage information from Dynatrace portal.
Outage details are in the format : Jul 30 17:26 (read as July 30th 5:26pm). While extracting this information using GetText activity, the output is in String format.
Need this string format of DateTime to be converted to date format of DateTime as :7/30/2020 17:26
@Vinod_Krishna_C You would have to Convert to String to restrict it, It won’t be available in DateTime format as far as I know it
If it is Acceptable, then try this :
DateTime.ParseExact(yourString.Trim,“MMM dd HH:mm”,System.Globalization.CultureInfo.InvariantCulture).ToString(“MM/dd/yyyy HH:mm”)