Jump to content

Module:Count

From test1-
Revision as of 17:11, 21 February 2025 by TheAP (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Count/doc

local p = {}

function p.count(frame)
	local data = frame.args[1]
	local pat = frame.args[2]
	local _, count = string.gsub(data, pat, '')
	return count
end

return p