程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> asp的日期轉換星座函數

asp的日期轉換星座函數

編輯:關於ASP編程

    '日期轉換星座函數,參數是日期型
    function astro(birth)
    astro=""
    if birth="" or not isdate(birth) Then exit function
    birthmonth=month(birth) : if birthmonth<10 then birthmonth="0" & birthmonth
    birthday=day(birth) : if birthday<10 then birthday="0" & birthday
    birth=trim(birthmonth & birthday) '重整月日,0903型
    rAstro=split("水瓶座*0120*0219#雙魚座*0220*0320#白羊座*0321*0420#金牛座*0421*0521#雙子座*0522*0621#巨蟹座*0622*0722#獅子座*0723*0823#處女座*0824*0923#天秤座*0924*1023#天蠍座*1024*1122#射手座*1123*1222#摩蠍座*1222*0119#","#")
    astro="摩蠍座" '這個是跨年的,不好對比,先默認
    for i_ls=0 to ubound(rAstro)-2
     rls2=split(rAstro(i_ls) & "*","*")
     if birth>=rls2(1) and birth<=rls2(2) then
      astro=rls2(0)
      exit for
     end if
    next
    end function
     

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved