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

Let's say I define

%let person=John James Doe

 

How do I substitue the spaces with underscores, so I get the following effect, without typing the person's name?

%let person=John_James_Doe;

 

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
WarrenKuhfeld
Ammonite | Level 13

 

%let person=John James Doe;
%let person = %sysfunc(tranwrd(&person,%str( ), _));
%put &person;

View solution in original post

4 REPLIES 4
WarrenKuhfeld
Ammonite | Level 13

 

%let person=John James Doe;
%let person = %sysfunc(tranwrd(&person,%str( ), _));
%put &person;
apolitical
Obsidian | Level 7

works like a charm. thank you!

SuryaKiran
Meteorite | Level 14

Hi,

 

If your trying to substitute the values in the data step when calling the macro something like this works.

 

%let person=John James Doe;
DATA test;
person=TRANWRD("&person"," ","_");
RUN;

Thanks,
Suryakiran
apolitical
Obsidian | Level 7
yeah i tried that and also transtrn and translate functions, turns out what i need is a %sysfunc in the front. thank you.
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
  • 4 replies
  • 2549 views
  • 0 likes
  • 3 in conversation