Split string containing commas

Hi All,
I am new to RPA and UiPath

I want to split the string to enter date in the 3rd party application.

I have a string as below

Str1 = 01,02,2019,01,02,2019,A,26

I want to split the string as

01/02/2019 01/02/2019 A 26

varStringArray = Str1.Split(“,“c)
newString = varStringArray(0)+”/”+varStringArray(1)…

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