Data Table String removal

see this @taruna.mehra

e.g. the below will replace any space in any column with NA and return the new datatable

(From r In dtData.AsEnumerable
let ra = r.ItemArray.Select(Function (x) x.ToString.Trim.Replace(" ",“NA”)).toArray()
Select dtCorrected.Rows.Add(ra)).CopyToDataTable()