Hi all,
I have a piece of SAS code that I have trouble deciphering what it does. The code snippet is given below:
data files;
set file;
if fileref =: '#LN' or fileref =: 'SAS' then delete;
run;
My query is
1. What does '=:' do in the above code?
2. How is it different from the basic 'equal to' operator?
It would be grateful if I can get some detailed explanations on the queries.
Thanks,
Sarav
I have a piece of SAS code that I have trouble deciphering what it does. The code snippet is given below:
data files;
set file;
if fileref =: '#LN' or fileref =: 'SAS' then delete;
run;
My query is
1. What does '=:' do in the above code?
2. How is it different from the basic 'equal to' operator?
It would be grateful if I can get some detailed explanations on the queries.
Thanks,
Sarav