Answers for "check if alphabet javascript"

3

how to check if a string has only alphabets in javascript

if (!/[^a-zA-Z]/.test(word))
Posted by: Guest on June-11-2020
0

checking if a character is an alphabet in js

function isLetter(str) {
  return str.length === 1 && str.match(/[a-z]/i);
}
Posted by: Guest on May-15-2020
0

how to check if a string is alphabetic in 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
Posted by: Guest on October-27-2020

Code answers related to "check if alphabet javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language