BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Quentin
Super User

Hi Paul (et al.)

 

I think perhaps you're being a little bit too harsh on the macro documentation.

https://documentation.sas.com/?docsetId=mcrolref&docsetTarget=n1y2jszlvs4hugn14nooftfrxhp3.htm&docse...

 

With a close reading, it defines three different "forms" of macro variable specification

:macro-variable

:macro-variable-1 − : macro-variable-n <NOTRIM>

:macro-variable SEPARATED BY 'characters ' <NOTRIM>

 

Only the second and third form say that leading and trailing blanks are automatically trimmed (yes should be "stripped").  So that part is accurate.  Definitely it should be updated to describe the <TRIMMED> option which is available for the first form.

 

data have ;
  x="  foo  " ;
run ;

proc sql ;
  select x into :mvar1 from have ;
  select x into :mvar2 trimmed from have ;
  select x into :mvar3- from have ;
  select x into :mvar4- notrim from have ;                   
  select x into :mvar5 separated by " " from have ;
  select x into :mvar6 separated by " " notrim from have ;
quit ;

%put >>&mvar1<< >>&mvar2<< >>&mvar3<< >>&mvar4<< >>&mvar5<< >>&mvar6<< ;

 

Returns:

>>  foo  << >>foo<< >>foo<< >>  foo  << >>foo<< >>  foo  <<

Which is consistent with the docs.

 

In the second form, since the upper bound is optional, I suppose it should be:

:macro-variable-1 −  <: macro-variable-n> <NOTRIM>

 

Kind Regards,

 

--Q.

 

BASUG is hosting free webinars Next up: Mark Keintz presenting History Carried Forward, Future Carried Back: Mixing Time Series of Differing Frequencies on May 8. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.
hashman
Ammonite | Level 13

@Quentin;

Quentin, fair enough. 

Best - Paul 

Reeza
Super User
The error message should also be updated to include NOTRIM as an option in the list. Currently it's not shown but TRIMMED is included.

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
  • 17 replies
  • 1624 views
  • 6 likes
  • 8 in conversation