Модуль:Песочница/Pok

Материал из Space Station 14 Вики
Версия от 11:14, 21 января 2026; Pok (обсуждение | вклад) (Содержимое страницы заменено на «local p = {} function p.count(frame) local page = frame.args[1] local word = frame.args[2] local title = mw.title.new(page) if not title then return "Страница не найдена" end local text = title:getContent() or "" local _, count = text:gsub("%f[%w]" .. word .. "%f[%W]", "") return count end return p»)

Для документации этого модуля может быть создана страница Модуль:Песочница/Pok/doc

local p = {}

function p.count(frame)
    local page = frame.args[1]
    local word = frame.args[2]

    local title = mw.title.new(page)
    if not title then
        return "Страница не найдена"
    end

    local text = title:getContent() or ""
    local _, count = text:gsub("%f[%w]" .. word .. "%f[%W]", "")

    return count
end

return p