Answers for "check if a string is alphanumeric"

0

check if a string is alphanumeric

if (string.match(/^[0-9A-Za-z]+$/) === null) { 
 //is not alphanumeric
 }else{
 //it is alphanumeric
 }
Posted by: Guest on June-11-2021
0

how to check if a character is alphanumeric in python

#Python String isalnum() Method
txt = "Company12"

x = txt.isalnum()

print(x)

#output:
True
Posted by: Guest on May-20-2021

Code answers related to "check if a string is alphanumeric"

Code answers related to "Javascript"

Browse Popular Code Answers by Language