I would like to extract just the number 27.59 from the following Positive (27.59). Irrespective of the text before the parenthesis.
thank you
SCAN() will work well as long as the text before (or after if searching backwards) does not include parentheses.
number = input(scan(string,1,'()'),32.);
SCAN() will work well as long as the text before (or after if searching backwards) does not include parentheses.
number = input(scan(string,1,'()'),32.);
It sounds like you know the number that you are searching for in advance; is that correct? If so, see the code below. I'm using a combination of the FIND, LENGTH, and SUBSTR functions. I'm sure there are other ways to do it as well.
Regards,
Jim
Results:
Code:
DATA _NULL_;
Search_For = '27.59';
Search_Len = LENGTHN(Search_For);
Var = 'Positive (27.59)';
Number = SUBSTR(Var, FIND(Var,'27.59'), Search_Len);
PUTLOG "NOTE: " Number=;
PUTLOG "NOTE- " ;
RUN;
Thank you Tom and Jim for the quick response.
I used the following..ct_value= scan(Result,2,'()');
I just need the number with in parenthesis for all the records.
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.
Ready to level-up your skills? Choose your own adventure.