BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ybz12003
Rhodochrosite | Level 12

Hello:

 

I would like to remove some charaters from different postions in the string.  Please advice.

 

The data are list below:

lab_den_pcr_perf_1

mhh_cyto_tests_1__cfdna

nad_cert_30

nad_imag_find___abn_cort_gyr

 

And I would like to change them to:

lab_den_pcr_perf

mhh_cyto_tests__cfdna

nad_cert

nad_imag_find

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16
/*In the below case i am suppressing only the digits whereever they are located in the string*/




data have; input text$100.; cards; lab_den_pcr_perf_1 mhh_cyto_tests_1__cfdna nad_cert_30 nad_imag_find___abn_cort_gyr ; data want; set have; new=prxchange('s/\d+//',-1,text); run;
Thanks,
Jag

View solution in original post

4 REPLIES 4
Reeza
Super User

What are the rules? 

 

kiranv_
Rhodochrosite | Level 12

As per suggestion of @Reeza , please provide some information, so that someone call help you. I find regular expressions very helpful for this kind of scenarios

Jagadishkatam
Amethyst | Level 16
/*In the below case i am suppressing only the digits whereever they are located in the string*/




data have; input text$100.; cards; lab_den_pcr_perf_1 mhh_cyto_tests_1__cfdna nad_cert_30 nad_imag_find___abn_cort_gyr ; data want; set have; new=prxchange('s/\d+//',-1,text); run;
Thanks,
Jag
ybz12003
Rhodochrosite | Level 12

Thanks for the great suggestion. will looking into the prxchange function.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1270 views
  • 0 likes
  • 4 in conversation