Hello 🙂
There is a statement: "Apple is the Anthem"
How do I write a step that finds the difference in positions between the two As?
THANK YOU!!!!
Just two A ?
data _null_;
x="Apple is the Anthem";
a=findc(x,'A');
b=findc(x,'A','b');
dif=b-a;
put a= b= dif=;
run;
Well, you could use the index function to find each A and then subtract but that doesn't scale well.
Will you always be looking for two As?
It looks like your doing string functions. You may want to review the available functions here
Just two A ?
data _null_;
x="Apple is the Anthem";
a=findc(x,'A');
b=findc(x,'A','b');
dif=b-a;
put a= b= dif=;
run;
Hi Ksharp,
Works perfectly!
Thank you for your sharp advice 🙂
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.