How to rename columns from a list all at once
If I have a data table set up as below
Col1Col2Col3Col41ae202bf213cg22
and a list of strings for new column names
NewCols = { "Data1", "Data2", "Data3", "Data4"}
How can I write a script to rename the columns of the data table all once using the list New Cols such that it results in the following data table?Data1Data2Data3Data41ae202bf213cg22