Answers for "check for alphabetic string in javascript"

0

check for alphabetic string in javascript

function isAlphaOrParen(str) {
  return /^[a-zA-Z()]+$/.test(str);
}
Posted by: Guest on May-10-2021

Code answers related to "check for alphabetic string in javascript"

Browse Popular Code Answers by Language