Hello, you have come here looking for the meaning of the word
Module:yi-utilities. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:yi-utilities, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:yi-utilities in singular and plural. Everything you need to know about the word
Module:yi-utilities you have here. The definition of the word
Module:yi-utilities will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:yi-utilities, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
require('mw.ustring')
heUtils = require('Module:he-utilities')
heLetters = heUtils.letters
heVowels = heUtils.vowels
p = {}
function p.finalToMedial(word)
word = mw.ustring.gsub(word, heLetters.kafSofit, heLetters.kaf)
word = mw.ustring.gsub(word, heLetters.memSofit, heLetters.mem)
word = mw.ustring.gsub(word, heLetters.nunSofit, heLetters.nun)
word = mw.ustring.gsub(word, heLetters.peiSofit, heLetters.pei .. heVowels.rafe)
word = mw.ustring.gsub(word, heLetters.tsadiSofit, heLetters.tsadi)
return word
end
return p