“Como verificar se uma string é alfabética em javascript” Respostas de código

Verificando se um personagem é um alfabeto em JS

function isLetter(str) {
  return str.length === 1 && str.match(/[a-z]/i);
}
Bored Buzzard

Como verificar se uma string é alfabética em javascript

function isAlphaOrParen(str) {
  return /^[a-zA-Z()]+$/.test(str);
}

/*/^[a-zA-Z()]*$/ - also returns true for an empty string
/^[a-zA-Z()]$/ - only returns true for single characters.
/^[a-zA-Z() ]+$/ - also allows spaces*/
//better regEX to include question marks too
Ugly Unicorn

Verifique se há corda alfabética em JavaScript

function isAlphaOrParen(str) {
  return /^[a-zA-Z()]+$/.test(str);
}
Homeless Hoopoe

Respostas semelhantes a “Como verificar se uma string é alfabética em javascript”

Perguntas semelhantes a “Como verificar se uma string é alfabética em javascript”

Procure respostas de código populares por idioma

Procurar outros idiomas de código