Hello friends,
I am trying to drop observations ending in "_A" of the variable, "category". I used the following code and didn't work. Could you please help?
If substr(category, - 1, 2)="_0" then delete;
Thank you and all have a wonderful weekend!
Rube
You cannot use negative numbers with SUBSTR().
if substrn(category,length(category)-1) = '_A' then delete;
You can use negative numbers with SCAN().
if scan(category,-1,'_') = 'A' then delete;
Do you ever have values that are just 'A' without any underscore?
Do you ever have values with lowercase a as the suffix?
if index(category,'_') and upcase(scan(category,-1,'_')) = 'A' then delete;
You cannot use negative numbers with SUBSTR().
if substrn(category,length(category)-1) = '_A' then delete;
You can use negative numbers with SCAN().
if scan(category,-1,'_') = 'A' then delete;
Do you ever have values that are just 'A' without any underscore?
Do you ever have values with lowercase a as the suffix?
if index(category,'_') and upcase(scan(category,-1,'_')) = 'A' then delete;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.