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!
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
View the full agenda.
Register now!
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.