2017-04-18 14:00:50 NBA 季后赛首轮G2 灰熊vs马刺
?????
百度 先看球队数据,场均分排名联盟第九,进攻效率联盟第二十一,防守效率排名联盟第十三,这些数据已经取得了巨大的进步,完全是一支联盟中上游的球队数据,更可怕的还在后面,场均个篮板全联盟第二其中个进攻篮板联盟第四,个篮板联盟第五,再看助攻,场均个联盟第七,个抢断联盟第十一,还有场均的全联盟第一内线得分,的联盟第二二次进攻得分和的快攻得分也是联盟第二。
local p = {} -- Use this function from templates. function p.convert_template(frame) -- Third argument is optional; If true given, signs like dot (.) will be replaced. frame.args[3] = frame.args[3] or nil return p.convert(frame.args[1], frame.args[2], frame.args[3]) end -- Use this function directly in modules. function p.convert_cordination(text) text = tostring(text) text = mw.ustring.gsub(text, "?????", "N") text = mw.ustring.gsub(text, "?????", "E") text = mw.ustring.gsub(text, "??????", "S") text = mw.ustring.gsub(text, "??????", "W") return text end function p.convert(lang, text, signs, virgule) text = tostring(text) signs = signs or nil virgule= virgule or nil if lang == "bn" or lang == "as" or lang == "bpy" or lang == "glk" then text = mw.ustring.gsub(text, "[0?]", "?") text = mw.ustring.gsub(text, "[1?]", "?") text = mw.ustring.gsub(text, "[2?]", "?") text = mw.ustring.gsub(text, "[3?]", "?") text = mw.ustring.gsub(text, "[4?]", "?") text = mw.ustring.gsub(text, "[5?]", "?") text = mw.ustring.gsub(text, "[6?]", "?") text = mw.ustring.gsub(text, "[7?]", "?") text = mw.ustring.gsub(text, "[8?]", "?") text = mw.ustring.gsub(text, "[9?]", "?") if type(signs) ~= "nil" then text = mw.ustring.gsub(text, "%.", "?") end elseif lang == "bn" or lang == "as" or lang == "bpy" then text = mw.ustring.gsub(text, "[?0]", "?") text = mw.ustring.gsub(text, "[?1]", "?") text = mw.ustring.gsub(text, "[?2]", "?") text = mw.ustring.gsub(text, "[?3]", "?") text = mw.ustring.gsub(text, "[?4]", "?") text = mw.ustring.gsub(text, "[?5]", "?") text = mw.ustring.gsub(text, "[?6]", "?") text = mw.ustring.gsub(text, "[?7]", "?") text = mw.ustring.gsub(text, "[?8]", "?") text = mw.ustring.gsub(text, "[?9]", "?") elseif lang and lang ~= "" then -- ???? ???? ???????? ???? text = mw.ustring.gsub(text, "[??]", "0") text = mw.ustring.gsub(text, "[??]", "1") text = mw.ustring.gsub(text, "[??]", "2") text = mw.ustring.gsub(text, "[??]", "3") text = mw.ustring.gsub(text, "[??]", "4") text = mw.ustring.gsub(text, "[??]", "5") text = mw.ustring.gsub(text, "[??]", "6") text = mw.ustring.gsub(text, "[??]", "7") text = mw.ustring.gsub(text, "[??]", "8") text = mw.ustring.gsub(text, "[??]", "9") text = mw.ustring.gsub(text, "?", ".") if type(virgule) ~= "nil" then text = mw.ustring.gsub(text, "?", ",") end end return text end return p