If the string has an alphabet or a number, return true. Otherwise, return false.
I have to do this, right?
return re.match('[A-Z0-9]',thestring)
|
|
Use
|
|||||||||||||
|
|
If you want to check if ALL characters are alphanumeric:
If you want to check if at least one alphanumeric character is present:
or
|
|||||||
|