BookmarkSubscribeRSS Feed
amol2939
Calcite | Level 5
I have a lab result and want to filter only character result value
Eg: O Positive
Pale yellow
Any idea how to filter
7 REPLIES 7
ChrisNZ
Tourmaline | Level 20

What's the criterion? 

No digits allowed? Only letters allowed? Punctuation allowed? Spaces allowed?

amol2939
Calcite | Level 5
Only letters allowed
ChrisNZ
Tourmaline | Level 20
amol2939
Calcite | Level 5
Space allowed
But no numeric value must be there
ChrisNZ
Tourmaline | Level 20

To test for numerics:

  where ^anydigit(VAR) ;

To test for non- letters and spaces:

  where ^prxmatch('/[^ a-zA-Z]/');

 

amol2939
Calcite | Level 5
Spaces allowed
andreas_lds
Jade | Level 19

To stop guessing what you really need, please post data you have in usable form and the expected result.

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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 7 replies
  • 1566 views
  • 1 like
  • 3 in conversation