Module:PriceParser

From Roat Pkz
Revision as of 06:34, 2 May 2024 by Hefner (talk | contribs) (Created page with "-- Module:PriceParser local p = {} function p.removeComma(price) -- Remove any commas from the price string return string.gsub(price, ",", "") end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

-- Module:PriceParser

local p = {}

function p.removeComma(price)
    -- Remove any commas from the price string
    return string.gsub(price, ",", "")
end

return p