Rename Data Column
rename the data column with new column name.
Last updated
rename the data column with new column name.
Last updated
Rename the data column of the specified column name or column index with a specified new column name from the data table.
Input : DataTable Variable
The Data Table object from which the column name is to be renamed.
Column Name : DynamicSearchString
The name of the column is to be renamed from the column collection of the Data Table. If this property is set then the Column Index property is ignored.
Text
- The full name of the column that is to be sorted.
Regex
- The regex is used to find matching column names to be sorted.
Wildcard
- The character that is used to search for matching column name. The asterisk (*)and the question mark (?) are used as wildcard characters. The asterisk represents zero or more characters in a string. The question mark represents any one character.
When multiple matches are found while using Search Methods, only the first match is considered.
The Text
, Regex
and Wildcard
search methods are supported.EditDistance
is not supported.
Column Index: Object Argument
The index of the column that is to be renamed from the column collection of the Data Table. If this property is set then the Column Name property is ignored.
New Column Name: String Argument
The new column name for renaming the specified data column from the column collection of the data table.
Output: DataTable Variable
The Variable that stores the output data table with a new column name.