Functions.CMonth 方法 | |
从日期中提取月份名称。
命名空间:
XSharp.RT
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 FUNCTION CMonth(
dDate AS DATE
) AS STRING
public static string CMonth(
__Date dDate
)
查看代码参数
- dDate
- 类型:__Date
要从中提取月份的日期。
返回值
类型:
String
月份名称,其中第一个字母大写,其余字符小写。
对于无效或 NULL_DATE,CMonth() 返回 NULL_STRING。
备注
CMonth() 是一个日期转换函数,用于创建可在报告、标签、屏幕等中使用的格式化日期字符串。
此函数与国家/地区相关。
示例
以下示例说明了 CMonth() 的用法:
1? CMonth(Today())
2? CMonth(Today() + 45)
3? Substr3(CMonth(Today()), 1, 3) +;
4 Str(Day(Today()))
参见