這是一個 Ruby 函數
def new_count(word) word.downcase! return 1 if word.length <= 3 word.sub!(/(?:[^laeiouy]es|ed|[^laeiouy]e)$/, '') word.sub!(/^y/, '') word.scan(/[aeiouy]{1,2}/).size end
這是 JavaScript 中的等效函數。
function newCount(word) { word = word.toLowerCase(); if (word.length <= 3) return 1; word = word.replace(/(?:[^laeiouy]es|ed|[^laeiouy]e)$/, ''); word = word.replace(/^y/, ''); return word.match(/[aeiouy]{1,2}/g).length; }
以上是Ruby/JS 等價物的詳細內容。更多資訊請關注PHP中文網其他相關文章!