Dear,
Please suggest in my code. I need to output only records containing word "Platelet'. I am getting both records. Thank you
output needed;
tran Platelet
data one; input val $1-21; datalines; tran Plateletpheresis tran Platelet ; data two; set one; if index(val,'Platelet') >0; run;
If you want to search for words, use the function findw or a regular expression.
data two; set one; if findw(val,'Platelet') >0; run;
Dive into keynotes, announcements and breakthroughs on demand.
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.
Browse our catalog!