Module:Sandbox/RexxS/GenerateIDs

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by imported>RexxS at 02:28, 13 November 2019 (match the whole string). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
--[[
Module:GenerateIDs
--]]

p = {}

--[[ 
This generates the second ID,
which is the term in lower-case if it begins with an upper case letter,
or nothing otherwise.
--]]
function p.second(frame)
	local args = frame:getParent().args
	local term = args.id or args.term or args[1] or ""
	if term == "" then
		args= frame.args
		term = args.id or args.term or args[1] or ""
		if term == "" then return nil end
	end
	return (term:match("^%u.*$") or ""):lower()
end

return p