📜  在字符串 java 脚本中查找元音和辅音 - Javascript 代码示例
📅  最后修改于: 2022-03-11 15:03:50.695000             🧑  作者: Mango
代码示例2
// BEST and FASTER implementation using regex
const countVowels = (str) => (str.match(/[aeiou]/gi) || []).length