Documentation for this module may be created at Module:ExtractTitle/doc
local p = {} function p.main(frame) local text = frame.args[1] or "" -- Remove any substring like " (Something)" at the end or within the string text = mw.ustring.gsub(text, "%s*%b()", "") return text end return p