Find into a variable string a char

I have many numerbers (see below) and want to check if they have only nubers or numbers and letters.

Example:
6060301258 - True
8052240122 - True
A86-V071B001 - False
C86-W050E001 - False

I want to use it for an if condition so true is then and false is else.

Hope you can help me out

Thanks

You can use IsNumeric(String) as your if statement condition

1 Like

You can also use regex is match activity and inside regex you can handle in regex expression.
If it is true then it is numeric else it is not.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.