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