다른 명령
이 모듈에 대한 설명문서는 모듈:AgeCalculator/설명문서에서 만들 수 있습니다
local p = {}
-- 생년월일로 나이 계산
function p.calculateAge(frame)
-- "출생" 인수를 가져옵니다.
local birthDateText = frame:getParent():getArgument("출생")
-- 입력값이 nil이거나 빈 문자열인 경우 처리
if not birthDateText or birthDateText == "" then
return "출생 정보 없음"
end
-- 입력값이 YYYYMMDD 형식인지 확인
local year, month, day = birthDateText:match("^(%d%d%d%d)(%d%d)(%d%d)$")
if not year or not month or not day then
return "잘못된 형식입니다. 올바른 형식: YYYYMMDD"
end
-- 숫자로 변환
year, month, day = tonumber(year), tonumber(month), tonumber(day)
-- 현재 날짜 가져오기
local today = os.date("*t")
local age = today.year - year
-- 생일이 지났는지 확인
if today.month < month or (today.month == month and today.day < day) then
age = age - 1
end
-- 반환 형식: "YYYY년 MM월 DD일 (XX세)"
return string.format("%d년 %02d월 %02d일 (%d세)", year, month, day, age)
end
return p