BookmarkSubscribeRSS Feed
knveraraju91
Barite | Level 11

Dear,

 

I have variable(value) whose values contain 'NCS' . I need to remove the string. Please help.

 

Thanks 

 

             value
"sentence of words NCS"

"sentence of words (NCS)"
"NCS , sentence of words"
"NCS sentence of words"
"NCS; sentence of words"

5 REPLIES 5
Reeza
Super User

Look at TRANWRD function 

KachiM
Rhodochrosite | Level 12

You may try COMPRESS function too.

 

new_Value = compress(Value, 'NCS',' ');

 

You have comma, semicolon, '(' and ')'.

 

These also can be compressed into blanks or none.

Ksharp
Super User
You didn't post then output yet.



data have;
input value $quote40.;
cards4;
"sentence of words NCS"
"sentence of words (NCS)"
"NCS , sentence of words"
"NCS sentence of words"
"NCS; sentence of words"
;;;;
run;
data want;
 set have;
 new_value=prxchange('s/\bNCS\b//i',-1,value);
run;

knveraraju91
Barite | Level 11

Hi 

Thanks for the help. It worked, but removed only 'NCS' characters only.

 

output;

 

"sentence of words "
"sentence of words ()"
" , sentence of words"
" sentence of words"
"; sentence of words"
Ksharp
Super User
Then what output do you expect ?

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 904 views
  • 4 likes
  • 4 in conversation