BookmarkSubscribeRSS Feed
Mike_Davis
Fluorite | Level 6

Hello everyone,

I have two questions:

Thanks!

1.

How to use string function to find  the first none 'x' letter?

data have;

value='xxasdxfg';output;

value='xxxxqwerxxt';output;

run;

data need;

value

asdxfg

qwerxxt

2.

how to use string function keep the last N digit?

data have;

x='123456789';

run;

data want;

set have;

x2=substr(x,-4); /*I need x2=6789,the last four digits of x*/

run;

1 REPLY 1
MikeZdeb
Rhodochrosite | Level 12

hi ...

data have;

value='xxasdxfg';output;

value='xxxxqwerxxt';output;

run;

data want;

set have;

new = substr(value,verify(value,'x'));

run;

data have;

x = '123456789';

run;

data want;

set have;

x2 = substr(x,length(x)-3);

run;

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
  • 1047 views
  • 0 likes
  • 2 in conversation