So i have to validate the gpa being entered so that it follows the guidelines first number is 0-4 the next thing is a (.) followed by 2 more digits 0-9. This is what i have but it is not working.
function validateGPA(gpa){
var errorValue = gpa;
var legalValue = /^\[0-4]\[.]\d\d$/;
console.log(gpa);
if(gpa == ""){
errorValue = "Please enter your GPA.\n";
} else if(!legalValue.test(gpa)){
errorValue = "Please enter a 3 digit gpa.\n";
}
return errorValue;
}
Im not sure what im doing wrong, Ive tried a few tweaks but nothing seems to be working.
So i have to validate the gpa being entered so that it follows the guidelines first number is 0-4 the next thing is a (.) followed by 2 more digits 0-9. This is what i have but it is not working.
function validateGPA(gpa){
var errorValue = gpa;
var legalValue = /^\[0-4]\[.]\d\d$/;
console.log(gpa);
if(gpa == ""){
errorValue = "Please enter your GPA.\n";
} else if(!legalValue.test(gpa)){
errorValue = "Please enter a 3 digit gpa.\n";
}
return errorValue;
}
Im not sure what im doing wrong, Ive tried a few tweaks but nothing seems to be working.
Share Improve this question asked Nov 14, 2014 at 0:39 johanvdvjohanvdv 1271 gold badge2 silver badges6 bronze badges 1-
Why are you escaping
[
? – user663031 Commented Nov 14, 2014 at 1:30
3 Answers
Reset to default 10This is the shortest expression:
/^[0-4]\.\d\d$/
Explanation:
^ - Start of line
[0-4] - One digit in the range 0-4
\. - A dot, which needs to be escaped with a backslash.
Without the backslash it means "any character apart from line break"
\d\d - Two digits (any value from 0-9)
$ - End of line
Try like this:
/^[0-4]\.\d{2}$/
/^[0-4][.][0-9][0-9]$/
^ matches all strings starting with a number between 0 and 4 $ - Means the string ends with a number from 0 to 9
Hope this helps.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743613593a4478647.html
评论列表(0条)