Link Search Menu Expand Document

Match Numbers and Letters of the Alphabet

Summary

  • The hyphen character - can be used to define a range of numbers.

Final Code

let quoteSample = "Blueberry 3.141592653s are delicious.";
let myRegex = /[h-s2-6]/gi; // Change this line
let result = quoteSample.match(myRegex); // Change this line