Hi I want after the last Last delimiter text should be extract and replaced _ with Space delimiter in sas
data ddd;format Have $50. Want$50.;Have="\core\event\user_login_failed";Want=(substr(Have,1,index(Have,"\")+(lengthn("\")-1)));run;
Have="\core\event\user_login_failed";Want=user_login_failed
replaced instead of user login failed
Thanks,
Siva
Assuming that you mean you want to take the last "word" from a delimited string then use the SCAN() function.
To replace characters use the TRANSLATE() function.
want=translate(scan(have,-1,'\'),' ','_');
View solution in original post
Thank you very much Tom!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Save the date!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.