How to select columns which start with specific names in JSL?
Hello, I have some problem when I want to select some specific columns. If there have column header with "RD123", "RD345", "123RD"...etc.I want to select the column only start with "RD", and the only script I know is below dt = Current Data Table();
colList= dt << get column names( string );
For( i = 1, i <= N Items( colList ), i++,
If( Contains(colList [i], "RD")) << set selected)
); How to modify th...