I have sting = 23/01/2021
I want to split to 3 part
string1 = 23
string2 = 01
string3 = 2021
Please guide me about it.
I have sting = 23/01/2021
I want to split to 3 part
string1 = 23
string2 = 01
string3 = 2021
Please guide me about it.
Try this
test.Split(“{”/“}”,StringSplitOptions.None)
Just done small change try this
test.Split({“/”},StringSplitOptions.None)
test.xaml (5.8 KB)
Hey
Check out this very helpful MegaPost.
@ermanoj3101 I apply your code.
[testtt.xaml|attachment]
datatest.xlsx (8.9 KB)
testtt.xaml (20.0 KB)
But output not correct as below.
Please guide me for solve it.
let me check
testtt.xaml (20.3 KB)
You have done a mistake of variables instead of string you have to use Array of string.
Now it’s working…
Hi,
in UiPath you can have activity for this:
Check Microsoft.Activities.Extensions:
Sample for activity Split String:
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.