在 VBScript 中将秒转换为周、天、小时、分钟、秒
vbscript中有没有将指定秒数转换为周/日/小时/分钟/秒时间格式的函数?
例如:969234 秒 = 1 周 4 天 5 小时 13 分 54 秒
Is there a function to convert a specified number of seconds into a week/day/hour/minute/second time format in vbscript?
eg: 969234 seconds = 1wk 4days 5hrs 13mins 54secs
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有内置函数可以做到这一点。
这是一个快速而肮脏的:-
No built in function to do that.
Here is a quick and dirty one:-
您想使用
timer
伪变量:You wantto use
timer
pseudo-variable :