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

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 5 replies
  • 910 views
  • 0 likes
  • 4 in conversation