BookmarkSubscribeRSS Feed
juanvg1972
Pyrite | Level 9

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:

indexw.png

Can anybody help me?

Thanks in advance

http://sasybi.blogspot.com

1 REPLY 1
ballardw
Super User

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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 978 views
  • 0 likes
  • 2 in conversation