View source for Module:also
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
local m_links = require("Module:links")
local getArgs = require('Module:Arguments').getArgs
function export.codify(text) --removes diacritics and non-alphanumeric characters, converts to upper case
text = mw.ustring.toNFC(text)
text = mw.ustring.lower(text)
text = mw.ustring.gsub(text,"[áàâäǎăāãåąắăằắẳẵặâầẩẫấậả]","a")
text = mw.ustring.gsub(text,"[æǣǽ]","ae")
text = mw.ustring.gsub(text,"[ćċĉčç]","c")
text = mw.ustring.gsub(text,"[ďđḍðḑ]","d")
text = mw.ustring.gsub(text,"[éèėêëěĕēẽęẹɛǝəềểễếệ]","e")
text = mw.ustring.gsub(text,"[ġĝğģ]","g")
text = mw.ustring.gsub(text,"[ĥħḥḩ]","h")
text = mw.ustring.gsub(text,"[ıíìîïǐĭīĩįị]","i")
text = mw.ustring.gsub(text,"[ĵ]","j")
text = mw.ustring.gsub(text,"[ķ]","k")
text = mw.ustring.gsub(text,"[ĺŀľļłḷḹ]","l")
text = mw.ustring.gsub(text,"[ṃ]","m")
000
1:0
Templates used on this page:
Return to Module:also.