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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3047 views
  • 0 likes
  • 2 in conversation