Module:bnt-com-sortkey
පෙනුම
- පහත දැක්වෙන උපදෙස්, Module:bnt-com-sortkey/documentation හි පිහිටා ඇත. Module:bnt-com-sortkey/documentation]]. [සංස්කරණය]
- ප්රයෝජනවත් සබැඳි: උප පිටු ලැයිස්තුව • සබැඳි • transclusions • testcases • sandbox
local export = {}
local u = require("Module:string/char")
local a = u(0xF000)
local oneChar = {
["ɓ"] = "b" .. a, ["ɗ"] = "d" .. a
}
local twoChars = {
["v̄"] = "v" .. a
}
function export.makeSortKey(text, lang, sc)
text = mw.ustring.lower(text)
for from, to in pairs(twoChars) do
text = mw.ustring.gsub(text, from, to)
end
return mw.ustring.upper(mw.ustring.gsub(text, ".", oneChar))
end
return export