I have a dataset,
Sara.Ph.D
Ali PHD
Bran MD
I want remove the .PH.D and PHD and MD
want dataset:
Sara
Ali
Brian
data have; input x $40.; cards; Sara.Ph.D Ali PHD Bran MD ; data want; set have; want=prxchange('s/\b(phd|ph\.d|md)\b//i',-1,x); run;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
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.