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
Rhodochrosite | Level 12

 

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

View solution in original post

4 REPLIES 4
WarrenKuhfeld
Rhodochrosite | Level 12

 

%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.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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