Hi Community,
Here I have a sample dataset, I want to extract the gram/milligram values from the string.
I tried up with compress method, but even I need more efficient step to extract in particular format.
data have;
input drug1$30.;
cards;
metformin 500MG
Glycopride 250mg
GLYCOMET 1GM
gLYCOMET 1GM
GLYCIPHAGE 850MG
GLYCIPHAGE 500mg
;
run;
data want;
set have;
d1 = compress(drug1,'1234567890mgMG','k');
run;SAS Output
| metformin 500MG | mm500MG |
| Glycopride 250mg | G250mg |
| GLYCOMET 1GM | GM1GM |
| gLYCOMET 1GM | gM1GM |
| GLYCIPHAGE 850MG | GG850MG |
| GLYCIPHAGE 500mg | GG500mg |
Expected Output
500MG
250mg
1GM
850MG
500mg
Please suggest the code which extract the output in the given format.
NOTE : To more simpler, Atleast let me know how to remove the characters in front of numeric value.
Thanks in advance!
Hi,
data want(keep = unit);
set have;
unit = substr(drug1,anydigit(drug1));
run;Regards,
Manoj
Hi,
data want(keep = unit);
set have;
unit = substr(drug1,anydigit(drug1));
run;Regards,
Manoj
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.