Second()
函数返回0
到59
之间的数字,表示指定时间戳的秒钟数值。
语法
Second(time)
示例
添加一个模块,并添加以下示例代码 -
Private Sub Constant_demo_Click()
msgbox("Line 1: " & Second("3:13:25 PM"))
msgbox("Line 2: " & Second("23:13:45"))
msgbox("Line 3: " & Second("2:20 PM"))
End Sub
执行上面示例代码,得到以下结果 -
Line 1: 25
Line 2: 45
Line 3: 0