Functions.AmPm 方法 | |
将24小时制军用时间转换为12小时制时间。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION AmPm(
c24HrTime AS STRING
) AS STRING
public static string AmPm(
string c24HrTime
)
查看代码参数
- c24HrTime
- 类型:String
有效的军用时间格式为 hh:mO:ss,其中 hh 是24小时制的小时,mm 是分钟,ss 是秒。
返回值
类型:
String
一个11字符长的字符串,以12小时制格式表示,带有"am"或"pm"。
如果
cTime 不代表有效的军用时间,则返回 NULL_STRING。
备注 示例
这些示例使用 AmPm():
1? AmPm("10:45:23")
2? AmPm("22:45:23")
3? AmPm("10:45:23Hello")
4? AmPm("1045")
5? AmPm("10:45")
参见