Heim > Artikel > Web-Frontend > Eine Ruby/JS-Äquivalenz
Dies ist eine Ruby-Funktion
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
Dies ist eine äquivalente Funktion in 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; }
Das obige ist der detaillierte Inhalt vonEine Ruby/JS-Äquivalenz. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!