Hi,
I have a problem with indexw function. I don't know what, but this code desont' worl properly:
data ruta;
ruta = "O:\_Privada\JVidal\Proyecto base\proyecto base.egp";
run;
data ruta_1;
set ruta;
nomfich=scan(ruta,-1,'\');
pos1 = indexw(ruta, nomfich);
pos2 = indexw(ruta, 'proyecto');
run;
The result is:

Can anybody help me?
Thanks in advance
In the future please describe how "it doesn't work", unexpected output and the expected result, no output or error messages.
With that, is this what you may have been looking for:
data work.ruta_1;
ruta = "O:\_Privada\JVidal\Proyecto base\proyecto base.egp";
nomfich=scan(ruta,-1,'\');
pos1 = indexw(ruta,strip(nomfich),'\.');
pos2 = indexw(ruta, 'proyecto','\ ');
run;
pos1 = indexw(ruta,strip(nomfich),'\.'); Needs to have blanks removed. If you look at the properties of the variable NOMFICH you will see that it is 200 characters long. The blanks at the end are included in comparisons unless removed for the operation. ALSO you need to provide information that \ is a word boundary character.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.