Rumah > Artikel > hujung hadapan web > Kesetaraan Ruby/JS
Ini ialah fungsi 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
Ini ialah fungsi yang setara dalam 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; }
Atas ialah kandungan terperinci Kesetaraan Ruby/JS. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!