已过多少天

  1. .action{$this_year :=now | date "2006"}
  2. .action{$next_year := add $this_year 1}
  3. .action{$this_year_first :=toDate "2006-01-02" ( nospace (cat $this_year "-01-01"))}
  4. .action{$next_year_first :=toDate "2006-01-02" ( nospace (cat $next_year "-01-01"))}
  5. .action{$pass := add (div (now.Sub $this_year_first).Hours 24) 1}
  6. .action{$countdown := (div ($next_year_first.Sub now).Hours 24)}
  7. > 今年已过了 .action{$pass} 天,距离 .action{$next_year} 年还有 .action{$countdown}

当前周数

  1. .action{$this_year :=now | date "2006"}
  2. .action{$this_year_first :=toDate "2006-01-02" ( nospace (cat $this_year "-01-01"))}
  3. .action{$this_year_last :=toDate "2006-01-02" ( nospace (cat $this_year "-12-31"))}
  4. .action{$dayDict := dict "Mon" 1 "Tue" 2 "Wed" 3 "Thu" 4 "Fri" 5 "Sat" 6 "Sun" 7}
  5. .action{$firstDay := get $dayDict ($this_year_first | date "Mon")}
  6. .action{$pass_days := div (now.Sub $this_year_first ).Hours 24}
  7. .action{$week := div (add $pass_days $firstDay) 7}
  8. .action{$remain :=mod (add $pass_days $firstDay) 7}
  9. .action{if not (eq $remain 0)}
  10. .action{$week = add $week 1}
  11. .action{end}
  12. .action{$all_days := div ($this_year_last.Sub $this_year_first ).Hours 24}
  13. .action{$all_week := div (add $all_days $firstDay) 7}
  14. .action{$remain :=mod (add $all_days $firstDay) 7}
  15. .action{if not (eq $remain 0)}
  16. .action{$all_week = add $all_week 1}
  17. .action{end}
  18. > .action{$week} 周/共 .action{$all_week}

合并

  1. .action{$this_year :=now | date "2006"}
  2. .action{$next_year := add $this_year 1}
  3. .action{$this_year_first :=toDate "2006-01-02" ( nospace (cat $this_year "-01-01"))}
  4. .action{$this_year_last :=toDate "2006-01-02" ( nospace (cat $this_year "-12-31"))}
  5. .action{$next_year_first :=toDate "2006-01-02" ( nospace (cat $next_year "-01-01"))}
  6. .action{/* 1、正数和倒数*/}
  7. .action{$pass := add (div (now.Sub $this_year_first).Hours 24) 1}
  8. .action{$countdown := (div ($next_year_first.Sub now).Hours 24)}
  9. .action{/* 2、统计周数*/}
  10. .action{/* 2.1、已过多少周*/}
  11. .action{$dayDict := dict "Mon" 1 "Tue" 2 "Wed" 3 "Thu" 4 "Fri" 5 "Sat" 6 "Sun" 7}
  12. .action{$firstDay := get $dayDict ($this_year_first | date "Mon")}
  13. .action{$pass_days := div (now.Sub $this_year_first ).Hours 24}
  14. .action{$week := div (add $pass_days $firstDay) 7}
  15. .action{$remain :=mod (add $pass_days $firstDay) 7}
  16. .action{if not (eq $remain 0)}
  17. .action{$week = add $week 1}
  18. .action{end}
  19. .action{/* 2.2、已过多少周*/}
  20. .action{$all_days := div ($this_year_last.Sub $this_year_first ).Hours 24}
  21. .action{$all_week := div (add $all_days $firstDay) 7}
  22. .action{$remain :=mod (add $all_days $firstDay) 7}
  23. .action{if not (eq $remain 0)}
  24. .action{$all_week = add $all_week 1}
  25. .action{end}
  26. > 今年已过了 .action{$pass} 天(第 .action{$week} 周/共 .action{$all_week} 周),距离 .action{$next_year} 年还有 .action{$countdown} 天。