Answers for "allow space with alphanumeric in regex c#"

0

alphanumeric with space regex

var regex = new RegExp("^[A-Za-z0-9? ,_-]+$");
            var key = String.fromCharCode(event.charCode ? event.which : event.charCode);
            if (!regex.test(key)) {
                event.preventDefault();
                return false;
            }
Posted by: Guest on June-21-2021
0

regular expression alphanumeric dash space c#

var regexp = /^[a-zA-Z0-9-_]+$/;
var check = "checkme";
if (check.search(regexp) === -1)
    { alert('invalid'); }
else
    { alert('valid'); }
Posted by: Guest on January-07-2022

Code answers related to "allow space with alphanumeric in regex c#"

Browse Popular Code Answers by Language