BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Please see the following code, can anyone tell me why put 0 since &x does contain the brackets?

%let x = a(b);
%put %index(&x, ());

I want to use the code like this in macros, and how to check if a string contains brackets?
%* if brackets contained, then ... ;
%if %index(&x, ()) %then ...
4 REPLIES 4
ArtC
Rhodochrosite | Level 12
The index function looks for the second argument exactly not as individual characters. For that you need the INDEXC function. Try:
[pre]%let x = a(b);
%put %sysfunc(indexc(&x,()));
[/pre]
Of course the parentheses are a particularly unfortunate character to have to work with.
deleted_user
Not applicable
> The index function looks for the second argument
> exactly not as individual characters. For that you
> need the INDEXC function. Try:
> [pre]%let x = a(b);
> %put %sysfunc(indexc(&x,()));
> [/pre]
> Of course the parentheses are a particularly
> unfortunate character to have to work with.

Oh...yes. %index finds string not characters from given string. I was supposed to know this......a bit dizzy
Thanks a lot.
PatrickG
SAS Employee
Try looking for them separately, e.g. find the first one...

12 %let q = %str(%();
13 %put &q;
(
14 %let x = a(b);
15 %put %index(&x, &q);
2

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2239 views
  • 0 likes
  • 4 in conversation