How to remove the letter "A" from all values in the data table

Hi
—use Output datatable activity and pass the datatable as input and get the output with a variable of type string named str_input
—now use a assign activity like this
str_input = str_input.ToString.Replace(“A”,””)

Now again use GENERATE DATATABLE ACTIVITY and pass the string variable as input and get the output variable as datatable

Cheers @tera

2 Likes