Hi team
I want to replace a particular string from the entire data table, so how can I do it?
thankyou
Hi team
I want to replace a particular string from the entire data table, so how can I do it?
thankyou
Can We have a expected Output Screenshot??
Read range the excel !
Create Datatable Variable.
Assign:DtVariable= readDT.clone
Use the Below LINQ Function!
assign activity:
left side dtCorrected (datatype: Datatable)
rigth side:
(From d in ReadDt.AsEnumerable()
let ra = d.ItemArray.Select(Function (x) x.toString.Replace(“YourValue”, ”ReplaceValue”)).toArray
Select rc = DtVariable .Rows.Add(ra)).CopyToDataTable
Cheers
@Aishwarya_Bhargava
it worked
thankyou
@pravin_calvin
i want to replace multiple strings with other multiple strings
so how can I do that in a single take
Can we have a sample input and output ScreenShot?
Whether you need to replace in one column Value or Multiple Value Column!
Regards
Check if following this steps helps you
Let me know if you face any issues in this.
the generate data table is giving me all the columns in a single row, how can I fix it
Can you share the workflow here if possible? @Aishwarya_Bhargava
i can but it has variables attached to the configuration file
so I am not sure how it will be useful
Automatic.xaml (21.8 KB)
In Column Separator of Generate Data Table I see you have used comma did you try changing it some other options and see if it is working as expected?
Also, keep this option checked and see if it works @Aishwarya_Bhargava
it worked thankyou
Awesome @Aishwarya_Bhargava
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.