SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
Gianna41
Calcite | Level 5
 I am new at Enterprise Guide and need some help.
 
 I am specifically supposed to use the FIND function and the SUBSTR to pull out only the first percentage in a character string.  
 
It looks like this:
 
The column is Recipients
 
Then in the column it lists:
 
Charity 90%. Save the Whales 10%
Relief Assist. Inc. 20%. Cuida Ltd. 80%
 
and so on. There are a couple of hundred rows.
 
I need a column that shows only the first %. 
 
So, I created a computed column and did FIND(Recipients, "%",1)
 
Then I created a SUBSTR.
 
SUBSTR(Recipients,(FIND(Recipients, "%",1)),-3)
 
This did not work.  I thought it would go to the position of the first % sign and then read the two numbers in front of the % sign.  
 
Can someone help me with the correct FIND and SUBSTR combination?
 
This is one of the first SUBSTR functions I have done and is the first time I had to use FIND.  
 
It should have shown 90% in the first row and 20% in the second row based on the example rows above.
 
 
 
 
6 REPLIES 6
Reeza
Super User

@Gianna41 wrote:
 
 
This did not work.  

 

How did this not work?

Reeza
Super User
data have;
length var $100.;
var="Charity 90%. Save the Whales 10%";output;
var="Relief Assist. Inc. 20%. Cuida Ltd. 80%";output;
run;

data want;
set have;

index_value = find(var, '%');
value = substr(var, index_Value-3,3 );
run;
ChrisNZ
Tourmaline | Level 20

You don't use the substr function correctly. Look up the documentation.

data _null_;
 STR = 'Charity 90%. Save the Whales 10%';
 VAL = substr(STR,(find(STR, "%",1))-2,2);
 put VAL=;
run;

VAL=90

 

 

WarrenKuhfeld
Ammonite | Level 13

I would do something along these lines.  You typically have to use find results conditionally.  What if there is not a percent?  You need to support percentages of varying lengths.  I don't know what all of you values look like.  This code assumes blanks (or beginning of line) in front of each percentage.  If that is not the case, you need to adjust your code accordingly.

data x;
 input str $ 1-40;
 i = find(str, '%');
 if i gt 1 then val = scan(substr(str, 1, i - 1), -1, ' ');
 cards;
Charity 90%. Save the Whales 10%
Charity 90000%. Save the Whales 10%
Charity 9%. Save the Whales 10%
12%
Nothing here to see
;
proc print; run;
Astounding
PROC Star

If you're sure there will always be a % sign, you can use:

 

value = scan(scan(string, 1, '%'), -1);

 

 

subhani4
Obsidian | Level 7

HI,

 

It could be the easiest solution i believe ( Tried and tested) . Please let me know if it helps. Thanks!!

 

data x;
input str $ 1-40;
y=index(str,'%');
val = substr(str,y-2);
datalines;
Charity 90%
Save the Whales 10%
Relief Assist. Inc. 20%
Cuida Ltd. 80%
;
proc print; run;

 

Capture.PNG

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 6 replies
  • 14124 views
  • 0 likes
  • 6 in conversation