Concatinate datatable multiple rows into string

I need to concatinate multiple rows of a datatable into string
Ex :-
Column1 column2 column3
a b c
d e f

Output - (‘a’,‘b’,‘c’,),(‘d’,‘e’,‘f’)
Thanks in advance

@Dinesh_Anumolu
have a look here:
Dinesh_Anumolu.xaml (7.1 KB)

with some harmonizations:
input:
[Column1,Column2,Column3
a,b,c
d,e,f
]

output:
grafik

1 Like

Thanks you it is working super fine,
Can i know how and where to learn tho functions,kindaa new to uipath😊

@Dinesh_Anumolu
The string functions comes from dot net framework:

for LINQ have a look here:

just do your final testing and once it was passing the test close topic by marking the solving post as solution. Thanks

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