Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

REGEX: Extract Alphabetical Characters and Numbers

Paddi
8 - Asteroid

Hi team,

 

I need to see if the record only contains Alphabetical Characters and Numbers, currently it can only detect Alphabetical Characters, how should I change the regular expression, so that it contains Alphabetical Characters and Numbers.

 

Now: [a-zA-Z]+

To-be: ???

 

Thank you.

2 REPLIES 2
DataNath
17 - Castor

Hey @Paddi, in the same way that you have A-Z, you just need to add 0-9 to check for numbers so it'd be:

 

[a-zA-Z0-9]+
Paddi
8 - Asteroid

@DataNath  Thank you, it works!

Labels