我有我想要編輯的電子郵件列表。最後,我有很多電子郵件,例如@ institution.dk。我想要刪除的所有這些類型的電子郵件。左側的字符數量沒有相同的長度,因此我必須從右向左識別電子郵件。如何使用substring函數獲取SAS中單詞的最後部分?
我曾嘗試:
data B;
set a;
where var not equals 'institution.dk';
run;
和
data B;
set a;
where var equals not 'institution.dk';
run;
和
data B;
set a;
where substr(var,-1,14^= 'institution.dk';
run;
和
data b;
set a;
var2=scan(trim(var),-1,14) ;
run;
data c;
set b;
if var2 ^= institution.dk;
run;
但沒有任何工作。如何讓SAS識別字符串的最後部分(從右到左計數),以便我可以刪除這些觀察值?