我将以下代码用于 coderbyte:
function VowelCount(str) {
// code goes here
return str.match(/[aeiou]/gi).length;
}
// keep this function call here
// to see how to enter arguments in JavaScript scroll down
print(VowelCount(readline()));
我了解大部分代码,但以下部分除外:
- 正斜杠和方括号有什么作用?
- 做什么的
gi
? search()
和 和有什么不一样match()
?我应该在什么条件下使用什么?