Hi, In a data table I have a column where every row has a string formatted like this:
Received Monday 13-08-2023 08:32
I need the date only in this format: 13/08/2023.
I am now using a For each activity looping thru all rows in the data table, and I am removing “Received Monday” in one step, the time in a second step, and replacing the - (hyphen" in the data in a third step.
Can I do all this in one step (Meaning all necessary code in one activity in stead of 3)?
Can aslo try with this:In Assign Activity
System.Text.RegularExpressions.Regex.Match(CurrentRow(“Date”).ToString,“\d{2}-\d{2}-\d{4}”).ToString.Replace(“-”,“/”)