모듈:Trim quotes: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
(mw.ustring is not needed to find apostrophe/quote; this is more efficient) |
잔글 (판 1개를 가져왔습니다) |
(차이 없음)
|
2023년 4월 25일 (화) 14:59 기준 최신판
이 모듈에 대한 설명문서는 모듈:Trim quotes/설명문서에서 만들 수 있습니다
local p = {}
function p._trim(s)
if s then
if s:match([[^(['"]).*%1$]]) then return p._trim(string.sub(s,2,-2)) else return s end
else
return ""
end
end
function p.trim(frame)
local s = (frame.args['s'] or frame.args[1]) or (frame:getParent().args['s'] or frame:getParent().args[1])
return p._trim(s)
end
return p