Answers for "check if string contains only letters and numbers 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
-1

javascript check if string includes numbers

/**
 * Function to check if a string contains any numbers
 * @author Sebastian Keable
 * @param {String} str - String to be checked.
 * @returns {Boolean} str - Result of the check.
 */
function containsNumbers(str){
  var regexp = /\d/g;
  return regexp.test(str);
};

// use function below
containsNumbers("Here are some Numbers 2123"); // => true
containsNumbers("Here are no Numbers"); // => false
Posted by: Guest on April-19-2021

Code answers related to "check if string contains only letters and numbers javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language