Dokumentácia pre tento modul môže byť vytvorená na Modul:ObsahujePodreťazec/Dokumentácia
local ObsahujePodretazec = {} function ObsahujePodretazec.ObsahujePodretazec( args ) local primary = args.args[1] local second = args.args[2] local offset = 0 offset = string.find(primary, second) if offset == nil then return "0" end return "1" end return ObsahujePodretazec