What can be the regular expression to select alphanumeric characters

what can be the regular expression to select alphanumeric characters like ABC23456

thanks

Try this regex expression , "^[a-zA-Z0-9_]*$ "

@Gopi_Krishna_Reddy1 Welcome to UiPath community

You can use this regex pattern for alphanumeric [A-Za-z0-9]+

Hi @Gopi_Krishna_Reddy1 ,

Welcome to UiPath Community!

if you have any leaner doubt about regex check with ChatGPT :wink:

https://chat.openai.com/chat

Thanks,


I want to change that expression into alphanumeric expression

is close to the \w class:
grafik


Or:

Ans also have a look at:
\p{L}
https://www.regular-expressions.info/unicode.html#prop