Okera
새 문서: local p = {} local function endswith(String, End) return End == '' or string.sub(String,-string.len(End)) == End end local function trim(s) return s:gsub("^%s+", ""):gsub("%s+$", ""):gsub("\226\128\142", "") end local function addKstToStringIfItDoesNotEndWithKst(s) if s == "" or endswith(s, "~~~~") then return s end if not endswith(s, "(KST)") then return s .. " (KST)" end return s end local function getDay(s) return s:gsub("Mon", "월"):gsub("Tue", "화"):gsub("Wed...