Convert String To Date Format 22 of May 2022)

Dear Colleagues

A help how could convert a date that is in String in the following format Example: (22 of May 2022) to Date format (22 of may)

Hello,

Here do you want just to remove the year or can you share few more examples?

@SADID_ALEXIS_ROMERO_MAHEC You cay apply regex to get this format

Str Output = System.Text.RegularExpressions.Regex.Replace(Input, "\d{4}", "").Trim.ToLower

Please find below workflow

Example.zip (2.4 KB)

Output

Capture

hi @ushu

Thank you so much

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.