BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi ,

I am having an data set, in that i need to remove all the alpha characters on the output files.Some records have values starts with 25MA07943500ANQ,A119966A85,
,AE209314-C18

I tried this code:
data x;
length provno$ 15.;
input provno$;
cards;
25MA07943500ANQ
25MA07943500BNQ
9096675
800004954-007
A002677-A85
A119966-A85
AT208713-A20
AE209314-C18
A209314-D18
A209314-E18
A209314-F18
;
run;

data y;
set x;
length provno$ 15.;
if anyalpha(provno)=1 then provno=substr(provno,2);
run;

But am not getting an exact output.Please help me on this code.

Thanks in Advance !!!

Raj
2 REPLIES 2
Ksharp
Super User
How about:
[pre]
data x;
length provno$ 15.;
input provno$;
cards;
25MA07943500ANQ
25MA07943500BNQ
9096675
800004954-007
A002677-A85
A119966-A85
AT208713-A20
AE209314-C18
A209314-D18
A209314-E18
A209314-F18
;
run;

data y;
set x;
length provno$ 15.;
provno=substr(provno,anydigit(provno));
run;
[/pre]


Ksharp
deleted_user
Not applicable
Thanks Sharp..am getting exact output !!!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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