Hi,
In the attached sheet, I want to read the data into SAS environment and then find all country id with extra space in the beginning or middle.
How to proceed. My output would be country id 222, 223 and 226
Why do you want to have 226 included? There's no blank at the beginning or in the middle, only at the end.
Checking a SAS character variable for trailing blanks makes no sense, as _all_ SAS character variables have trailing blanks (unless they're completely filled). "Empty" character variables contain blanks.
To find the others, you might want to check
if indexc(trim(countryname),' ') > 0;
Why do you want to have 226 included? There's no blank at the beginning or in the middle, only at the end.
Checking a SAS character variable for trailing blanks makes no sense, as _all_ SAS character variables have trailing blanks (unless they're completely filled). "Empty" character variables contain blanks.
To find the others, you might want to check
if indexc(trim(countryname),' ') > 0;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.