Answers for "check if string is alphanueric c#"

C#
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

c# test if char is alpha

Char.IsLetter('L');
Posted by: Guest on December-07-2020

Code answers related to "check if string is alphanueric c#"

C# Answers by Framework

Browse Popular Code Answers by Language