BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
luvscandy27
Quartz | Level 8

Hello everyone, I have a variable which contains items such as:

1.  Symptoms, signs, and abnormal clinical and laboratory findings

2. Injury and poisoning

 

I only want to keep the character portion: 

Symptoms, signs, and abnormal clinical and laboratory findings

Injury and poisoning

 

Could someone please help me? 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

If you know that every value has that numeric prefix then just remove the first "word".

want=left(substrn(string,1+length(scan(string,1,' '))));

Otherwise you will have to work harder first to figure out if the string does have the prefix.

data have ;
  input string $CHAR80. ;
cards4;
1.  Symptoms, signs, and abnormal clinical and laboratory findings
2. Injury and poisoning
;;;;

data want ;
  set have;
  new_string = prxchange('s/^ *\d+\. +(.*)$/\1/',1,string);
run;

Tom_0-1686680043413.png

 

View solution in original post

5 REPLIES 5
PaigeMiller
Diamond | Level 26

Use the COMPRESS function.

 

 

variable = compress(variable,,'d');

 

 

--
Paige Miller
luvscandy27
Quartz | Level 8

This method does not remove the . as well ?

PaigeMiller
Diamond | Level 26

@luvscandy27 wrote:

This method does not remove the . as well ?


Please give us a complete description of the problem. Show us representative examples.

--
Paige Miller
Reeza
Super User

I would find the first period and remove from there onwards using substring.

Compress may inadvertenly remove any other numeric/periods.

However, these were likely used to order the data so assuming you don't need that you'll be fine. 

 

x=findc(variable, '.');
want = substr(variable, x);
Tom
Super User Tom
Super User

If you know that every value has that numeric prefix then just remove the first "word".

want=left(substrn(string,1+length(scan(string,1,' '))));

Otherwise you will have to work harder first to figure out if the string does have the prefix.

data have ;
  input string $CHAR80. ;
cards4;
1.  Symptoms, signs, and abnormal clinical and laboratory findings
2. Injury and poisoning
;;;;

data want ;
  set have;
  new_string = prxchange('s/^ *\d+\. +(.*)$/\1/',1,string);
run;

Tom_0-1686680043413.png

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 606 views
  • 0 likes
  • 4 in conversation