0

在电源自动化(桌面)中,无论是星期一还是星期六,我如何计算本周的星期二?

4

1 回答 1

0

试试这个算法:

  1. 在 %CurrentDateTime% 中获取当前日期时间
  2. 格式化 %CurrentDateTime% 以使用“dddd”格式获取星期几,或使用内置属性 %CurrentDateTime.DayOfWeek%
  3. 通过以下逻辑获取给定星期几要添加到 %CurrentDateTime% 的天数:
  • a) 星期天,4
  • b) 星期一,3
  • c) 星期二,2
  • d) 星期三,1
  • e) 星期四,0
  • f) 星期五,-1
  • g) 对于星期六,-2
  1. 将该天数添加到 %CurrentDateTime%
于 2021-12-10T02:34:32.687 回答