not equal to symbol
Hi,
I have the following script and it does not select the correct columns names ("Std"). Here is the script:
cols = dt << Get column Names();
for( i = 1, i <= N Items( cols ), i++,
if( contains( cols[i] , "Std") != 1
,
Column( dt, cols[i] ) << Set Data Type( "Character" );
Column( dt, cols[i] ) << Set Modeling Type ("Nominal")
)
);
Looks like != does not do the job. Any help on this? Tha...
dale_lehman