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