Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我DayOfWeekAsString在我的脚本中使用了返回完整日期名称的函数。
DayOfWeekAsString
我正在寻找一些提供日期名称的功能,例如“SA,SU,MO,TU,......”
是否有可用的预定义功能?
没有内置的东西可以做到这一点,但应该这样做:
uCase( left( dayOfWeekAsString( 1 ), 2 ) )