data test;
string='abc_234_knm_dfjkdhf_dfdkf';
run;
i want ouput like
output_col = knm_dfjkdhf_dfdkf
can some one help on this
I would use:
output_col = substr(string, length(scan(string, 1, '_')) + length(scan(string, 2, '_')) + 3);
I'm sure those familiar with parsing functions could find something elegant.
output_col =scan(string,-1,'_');
it wil come only "dfdkf"
I would use:
output_col = substr(string, length(scan(string, 1, '_')) + length(scan(string, 2, '_')) + 3);
I'm sure those familiar with parsing functions could find something elegant.
THANK YOU SO MUCH !!
data test;
string='abc_234_knm_dfjkdhf_dfdkf';
x=substr(string,findc(string,'1234567890','b')+1);
put x=;
run;
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 save with the early bird rate—just $795!
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.