Replace quotes in a string

have a look here:

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()