모듈:Sortstring: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
백괴게임>Bd3076 편집 요약 없음 |
백괴게임>Bd3076 편집 요약 없음 |
||
2번째 줄: | 2번째 줄: | ||
function p.sort(str) | function p.sort(str) | ||
items = | items = mw.text.split(str.args[1], ""); | ||
table.sort(items); | table.sort(items); | ||
return table.concat(items, ""); | return table.concat(items, ""); |
2018년 6월 8일 (금) 17:20 판
위 설명은 모듈:Sortstring/설명문서의 내용을 가져와 보여주고 있습니다. (편집 | 역사) 이 모듈에 대한 수정 연습과 시험은 연습장 (만들기 | 미러)과 시험장 (만들기)에서 할 수 있습니다. 분류는 /설명문서에 넣어주세요. 이 모듈에 딸린 문서. |
local p = {}
function p.sort(str)
items = mw.text.split(str.args[1], "");
table.sort(items);
return table.concat(items, "");
end
function getParameters( frame_args, arg_list )
local new_args = {};
local index = 1;
local value;
for i,arg in ipairs( arg_list ) do
value = frame_args[arg]
if value == nil then
value = frame_args[index];
index = index + 1;
end
new_args[arg] = value;
end
return new_args;
end