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

Hi everyone,

I need assistance in solving this problem. I will like to use macro function to remove the parenthesis in a macro variable.

For example : I have (pat run track club ) as a macro variable &var and i want to use the &var in another code but the () must be off.

I tried using %sysfunc(tranwrd(&var,()%str(),%str() )) but it is not working. My code may be wrong .

Please assist to correct and solve the problem.

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

Compress has already been suggested, in your other related thread.

7    %let v = (pat run track club);

8     %let v = %sysfunc(compress(%superQ(v),%str(%(%))));

9     %put NOTE: V=&v;

NOTE: V=pat run track club

View solution in original post

2 REPLIES 2
data_null__
Jade | Level 19

Compress has already been suggested, in your other related thread.

7    %let v = (pat run track club);

8     %let v = %sysfunc(compress(%superQ(v),%str(%(%))));

9     %put NOTE: V=&v;

NOTE: V=pat run track club

fadtt
Calcite | Level 5

Thanks data_null_ it worked.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 3117 views
  • 0 likes
  • 2 in conversation