메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

모듈:AgeCalculator: 두 판 사이의 차이

이터널리턴 이스포츠 위키
편집 요약 없음
편집 요약 없음
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
7번째 줄: 7번째 줄:
     end
     end


     -- 생년, 월, 일 추출 (xx 또는 xxxx 처리)
     -- 입력 형식 구분
    local birthYear, birthMonth, birthDay = birthDate:match("(%d*%D*)(%d*)%D*(%d*)")
    if birthDate:match("^%d%d%d%d%-%d%d%-%d%d$") then
    birthYear = tonumber(birthYear)
        -- 완전한 날짜 형식 (예: 2002-01-01)
    birthMonth = tonumber(birthMonth)
        local birthYear, birthMonth, birthDay = birthDate:match("(%d+)%-(%d+)%-(%d+)")
    birthDay = tonumber(birthDay)
        birthYear = tonumber(birthYear)
        birthMonth = tonumber(birthMonth)
        birthDay = tonumber(birthDay)


    if birthDate:find("^xxxx") then
        local today = os.date("*t")
         -- 생년이 xxxx로 표시된 경우
         local age = today.year - birthYear
        if birthMonth and birthDay then
 
            return string.format("%d월 %d일", birthMonth, birthDay)
         -- 생일이 아직 지나지 않았으면 나이를 1 줄임
         else
         if (today.month < birthMonth) or (today.month == birthMonth and today.day < birthDay) then
            return "정보 없음" -- 월일 정보도 없으면
             age = age - 1
         end
    elseif birthDate:find("xx") then
        -- 일부 값에 xx가 포함된 경우 (예: 2002-xx-xx)
        if not birthYear then
             return "정보 없음" -- 생년이 없으면
         end
         end


         -- 나이를 계산하되 월/일은 무시
         -- 출력
        return string.format("%d년 %d월 %d일 (%d세)", birthYear, birthMonth, birthDay, age)
 
    elseif birthDate:match("^%d%d%d%d$") then
        -- 생년만 제공된 경우 (예: 2002)
        local birthYear = tonumber(birthDate)
 
         local today = os.date("*t")
         local today = os.date("*t")
         local age = today.year - birthYear
         local age = today.year - birthYear
        -- 출력
         return string.format("%d년 (%d세)", birthYear, age)
         return string.format("%d년 (%d세)", birthYear, age)
    end


     -- 생년, , 일이 모두 주어진 경우 처리
     elseif birthDate:match("^%d%d%-%d%d$") then
     if not birthYear then
        -- 월일만 제공된 경우 (예: 01-01)
        local birthMonth, birthDay = birthDate:match("(%d+)%-(%d+)")
        birthMonth = tonumber(birthMonth)
        birthDay = tonumber(birthDay)
 
        -- 출력
        return string.format("%d월 %d일", birthMonth, birthDay)
     else
        -- 올바르지 않은 입력 형식
         return "정보 없음"
         return "정보 없음"
     end
     end
    birthMonth = birthMonth or 1 -- 월이 없으면 1월로 기본 설정
    birthDay = birthDay or 1 -- 일이 없으면 1일로 기본 설정
    local today = os.date("*t")
    local age = today.year - birthYear
    -- 생일이 아직 지나지 않았으면 나이를 1 줄임
    if (today.month < birthMonth) or (today.month == birthMonth and today.day < birthDay) then
        age = age - 1
    end
    -- 출력 형식
    local formattedDate = string.format("%d년 %d월 %d일", birthYear, birthMonth, birthDay)
    return string.format("%s (%d세)", formattedDate, age)
end
end


return p
return p

2024년 12월 5일 (목) 09:35 기준 최신판

이 모듈에 대한 설명문서는 모듈:AgeCalculator/설명문서에서 만들 수 있습니다

local p = {}

function p.calculateAge(frame)
    local birthDate = frame.args[1] -- 템플릿에서 전달된 첫 번째 인수 (출생일)
    if not birthDate or birthDate == "" then
        return "날짜 없음" -- 출생일이 제공되지 않은 경우
    end

    -- 입력 형식 구분
    if birthDate:match("^%d%d%d%d%-%d%d%-%d%d$") then
        -- 완전한 날짜 형식 (예: 2002-01-01)
        local birthYear, birthMonth, birthDay = birthDate:match("(%d+)%-(%d+)%-(%d+)")
        birthYear = tonumber(birthYear)
        birthMonth = tonumber(birthMonth)
        birthDay = tonumber(birthDay)

        local today = os.date("*t")
        local age = today.year - birthYear

        -- 생일이 아직 지나지 않았으면 나이를 1 줄임
        if (today.month < birthMonth) or (today.month == birthMonth and today.day < birthDay) then
            age = age - 1
        end

        -- 출력
        return string.format("%d년 %d월 %d일 (%d세)", birthYear, birthMonth, birthDay, age)

    elseif birthDate:match("^%d%d%d%d$") then
        -- 생년만 제공된 경우 (예: 2002)
        local birthYear = tonumber(birthDate)

        local today = os.date("*t")
        local age = today.year - birthYear

        -- 출력
        return string.format("%d년 (%d세)", birthYear, age)

    elseif birthDate:match("^%d%d%-%d%d$") then
        -- 월일만 제공된 경우 (예: 01-01)
        local birthMonth, birthDay = birthDate:match("(%d+)%-(%d+)")
        birthMonth = tonumber(birthMonth)
        birthDay = tonumber(birthDay)

        -- 출력
        return string.format("%d월 %d일", birthMonth, birthDay)
    else
        -- 올바르지 않은 입력 형식
        return "정보 없음"
    end
end

return p