I have faced an error while replacing the double quotes for rows in a different data table columns. I have tried the following: “Output Data Table” → “Assign”: dt_string=dt_string.ToString.Replace(“”“”,“”) which does not remove the quotes at all.
Could you suggest any other solution? Thanks in advance!
Prepare dtCorrected as described: dtCorrected = dtData.Clone
(From r In dtData.AsEnumerable
let ra = r.ItemArray.Select(Function (x) x.ToString.Trim.Replace("""","")).toArray()
Select dtCorrected.Rows.Add(ra)).CopyToDataTable()