コンテンツにスキップ

モジュール:IsOutOfUnicodeBmp

モジュールの解説[表示] [編集] [履歴] [キャッシュを破棄]

return
{
	main = function(frame) 
		local target = frame.args[1]
		local n = mw.ustring.len(target)
		for i=1, n do
			local c = mw.ustring.codepoint(target, i)
			if c > 0xFFFF then -- out of Uncode Basic Multilingual Plane
				return i
			end
		end
        return 0
    end
}