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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.