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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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