Link Search Menu Expand Document

Match Single Characters Not Specified

Summary

  • ^ is used to define characters that should not match.

Final Code

let quoteSample = "3 blind mice.";
let myRegex = /[^aeiou3]/gi; // Change this line
let result = quoteSample.match(myRegex); // Change this line