Hi Guys . I am only interested in the underlined digits. I have tried with the compress and substr but no luck.
Example of data;
P2Pb 430 041017
P2P 10538 030517 DIBS
P2P 496 01092017
P2P 2594 01112016
thanks in advance.
data want; set have; want=input(scan(thedata,2," "),best.); run;
Note I assume your data is called have and the variable is thedata.
Post test data in the form of a datastep in the post using a code window, we cannot guess!!!!
Please post the code you tried, so that it is easier to suggest corrections. You can use the scan-function to get the second part of the string, then use the input-function to convert the extract to a number.
data want; set have; want=input(scan(thedata,2," "),best.); run;
Note I assume your data is called have and the variable is thedata.
Post test data in the form of a datastep in the post using a code window, we cannot guess!!!!
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.