BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Stalk
Pyrite | Level 9

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

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

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.);

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

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.);
jimbarbour
Meteorite | Level 14

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:

jimbarbour_0-1622057293236.png

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;
Stalk
Pyrite | Level 9

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. 

 

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
  • 3 replies
  • 528 views
  • 1 like
  • 3 in conversation