Pues eso, que muchas veces nos interesa validar que una variable esté compuesta sólo por números enteros o sólo por letras.
Aquí tenéis las dos funciones que utilizo yo:
function isInteger(theNum) {
return ((theNum+'').match(/^\d+$/) != null);
}
function isLetter(val) {
return ((val+'').match(/^[a-zA-Z]+$/) != null);
}
Sencillitas :)
Comparte este Post:
Aquí tenéis las dos funciones que utilizo yo:
function isInteger(theNum) {
return ((theNum+'').match(/^\d+$/) != null);
}
function isLetter(val) {
return ((val+'').match(/^[a-zA-Z]+$/) != null);
}
Sencillitas :)
Comparte este Post:
Comentarios