Check out the code:
<script type="text/javascript">
function ValidateTextBox(source, args) {
var is_valid = false;
//Regex goes here
var regex = /^[a-z A-Z]+$/;
var check = regex.test($('tbName').val()); //Checks the tbName value against the regex
if (check == true) {
//If input was correct
is_valid = true;
}
else {
//If input is not correct
$("tbName").css(("background-color", "#A00000"), ("border-color", "#780000"));
}
args.IsValid = is_valid; //Returns validity state
}
</script>
Im trying to check the input of a textbox so its only character between a and z, and A and Z, but it still returns true even on input like "1245".
Why is this?
Thanks
/^[a-z A-Z]+$/.test("1234")isfalse, the problem isn't in your regex. Check what value you are passing totest()– Inerdial Oct 27 '11 at 17:19/[^a-z A-Z]/andif (check) { invalid }. Right now your regex breaks if the input text is multiline. – Marc B Oct 27 '11 at 17:21