BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
brophymj
Quartz | Level 8

My understanding is that this function returns a position of the first letter of the alphabet in a string. Is there a similar function that include all non-numeric symbols.

The code I'm using is if anyalpha(field1) eq 0 then field2 = field1;

else field2 = 0;

But I'm not sure what function I should use if there is "/", "-", etc.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

Check  notdigit()   function .

View solution in original post

4 REPLIES 4
brophymj
Quartz | Level 8

I actually googled it there and the function for non-alphabetical characters is notalpha

brophymj
Quartz | Level 8

actually that doesn't work. What I'm looking for is a function that returns the position of the first character in a string that is not a number.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Have you tried:

position=findc(your_string,'_','a');

Note I just added _ to give it something to work with, the main part is the 'a' which adds all the alpha characters.

Ksharp
Super User

Check  notdigit()   function .

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 4 replies
  • 2339 views
  • 0 likes
  • 3 in conversation