Jump to content

Module:Strip to numbers

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by SMcCandlish (talk | contribs) at 20:39, 17 July 2015 (First take. I know F all about Lua, so I'll be surprised if this work out-of-the-box). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

function p.main(theString)
	local onlyNumerals
	onlyNumerals = (string.gsub(theString, "%D", ""))
	return onlyNumerals
end

return p