Hi everyone.
Can I please ask how can I remove the salutations ie Mr, Ms, Mrs, Miss, Dr. from the variable 'name' in my data?
Thank you.
Usually salutations are the first/prefix of a name followd by a space.
In such case :
%let salut_list = Mr Ms Mrs Miss Dr. ;
data want;
set have;
test = scan(name,1) ;
if test in (&salut_list)
then name = left(substr(name, length(test)+1));
/* drop or rename test to salut */
run;
Use TRANWRD but you need to be careful and test it.
For example, if you try and replace Miss, what about a first name as Missy?
Usually salutations are the first/prefix of a name followd by a space.
In such case :
%let salut_list = Mr Ms Mrs Miss Dr. ;
data want;
set have;
test = scan(name,1) ;
if test in (&salut_list)
then name = left(substr(name, length(test)+1));
/* drop or rename test to salut */
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.