📜  正则表达式:匹配具有多种可能性的单个字符 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:46.628000             🧑  作者: Mango

代码示例2
let quoteSample = "Beware of bugs in the above code; I have only proved it correct, not tried it.";
let vowelRegex = /[aeiou]/gi; // Change this line
let result = quoteSample.match(vowelRegex); // Change this line