string = APRIL2023
My requirement is I want to add a space in between them i.e APRIL 2023
string = APRIL2023
My requirement is I want to add a space in between them i.e APRIL 2023
Hi @Kumar_Sahu_Sameer ,
Use the following expression
system.Text.RegularExpressions.Regex.Replace(“APRIL2022”,“(?=\d{4})”," ")
Regards,
@Kumar_Sahu_Sameer
One of many ways.
"APRIL2023".Replace(Right("APRIL2023",4)," "+Right("APRIL2023",4))
Regards,
To add a space between the month and year in the given string “APRIL2023” using UiPath, you can use the following steps:
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.