You can use the find function to do this.
data have;
set want;
if find(comment,"storm","i")>0 then output = "Storm";
else if find(comment,"theft","i")>0 then output = "Theft";
run;
This assumes you will only ever find one or the other. If it is possible to have both, you would have to check for both simultaneously and concatenate your results.
You can use the find function to do this.
data have;
set want;
if find(comment,"storm","i")>0 then output = "Storm";
else if find(comment,"theft","i")>0 then output = "Theft";
run;
This assumes you will only ever find one or the other. If it is possible to have both, you would have to check for both simultaneously and concatenate your results.
The IFC function can also be used to consolidate. In this case i choose to look for either or both.
data have;
input Id $ @5 Comment $30.;
datalines;
1A. GL THE BOAT STORM
2A. SUNSHINE
3A. STORM IN THE CITY
4A. THEFT. IN THE JUNGLE
5A. RAINY DAY
6A. THEFT
7A. THEFT IN A STORM
run;
data want;
set have;
output=catx(',',ifc(index(comment,'STORM'),'storm',' '),ifc(index(comment,'THEFT'),'theft',' '));
run;
An issue to consider: do you want the exact word only, or variations such as THEFTS, RAINSTORM, STORMY ...
Depending on your answer, you might switch from FIND to FINDW.
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.