Hi
I need the number of character in string.
If I do like this:
%let str = 'new year';
%let spsPos = %index(&str,y);
It's ok. spsPos = 5. But how can I see the position of space?
I have tried like this:
%let spsPos = %index(&str, );
like this:
%let spsPos = %index(&str,' ');
and like this:
%let spsPos = %index(&str);
That doesn't work.