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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 1 reply
  • 645 views
  • 0 likes
  • 2 in conversation