good day,
i am using function index for searching the keyword from my data but some error happen and here is the example
NAME
Liverpool
Liverpoollowolo
club Liverpool
data want;
data have;
if index(NAME,"Liverpool") then output;
run;
The final data will contain these three names but the second (Liverpoollowolo) is not the result i want. how can i fix this?
can i add space to the keyword like below?
if index(NAME," Liverpool ") then output;
but i am afraid that the first one will fail cause there is no space before the name Liverpool
what i am looking for is a separate "Liverpool" in my new data set
Regards,
Harry
Use the INDEXW function if searching for words:
data want;
input name $50.;
if indexw(name,"Liverpool") then output;
datalines;
Liverpool
Liverpoollowolo
club Liverpool
;
Use the INDEXW function if searching for words:
data want;
input name $50.;
if indexw(name,"Liverpool") then output;
datalines;
Liverpool
Liverpoollowolo
club Liverpool
;
hi
you can use indexw(), findw()
it would be better to use upcase or lowcase for case-insensitive
if indexw(upcase(NAME),"LIVERPOOL") then output;
if findw(lowcase(NAME),"liverpool") then output;
if findw(NAME,"liverpool"," ",'i') then output;
have a good day
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.