BookmarkSubscribeRSS Feed
Mike_Davis
Fluorite | Level 6


Hello everyone,

I want to know whether a macro  variable is a pure numeric or it include some characters, how to do this?

For example:the macro  variable &notpure is NOT a pure numeric, it includes some characters('aqw').how to know this?

%let notpure=123aqw4567;

%let pure=12345;

Thanks

Mike

4 REPLIES 4
art297
Opal | Level 21

%let notpure=123aqw4567;

%put %sysfunc(notdigit(&notpure.));

%let pure=12345;

%put %sysfunc(notdigit(&pure.));

Mike_Davis
Fluorite | Level 6

Awesome,

Thanks Art!

Mike

Tom
Super User Tom
Super User

Why not use the SAS supplied macro DATATYP ?

Mike_Davis
Fluorite | Level 6


Thank you Tom!

%macro test;
%let a=123;
%let b=a12;
%put 1:%DATATYP(&a);
%put 2:%DATATYP(&b);
%if %DATATYP(&b)=CHAR %then %put char;
%if %DATATYP(&b)=NUMERIC %then %put #;
%mend test;

%test;

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!
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 4 replies
  • 838 views
  • 6 likes
  • 3 in conversation