Hi ,
I want to delete multiple columns based on some specific strings they contain in column name. I can do it for single name. But for multiple name it does not work.
col_list = dt << get column names(string);
for (i = nitems(col_list), i > 0, i--,
if (contains(col_list[i], "SAVED_IMAGES", "sw_", "HH"),
remove from(col_list, i);
);
);
Shows this error
dt = Current Data Table();
col_list = dt << get column names( string );
For( i = N Items( col_list ), i > 0, i--,
If( Contains( col_list[i], "SAVED_IMAGES", "SS_EID" ),
Remove From( col_list, i )
)
);