DateTimeZone.FromText

语法

DateTimeZone.FromText(text as nullable text, optional options as any) as nullable datetimezone

关于

从文本表示形式 text 创建一个 datetimezone 值。 可以提供可选 record 参数 options 来指定额外的属性。 record 可以包含以下字段:

  • Format:一个 text 值,指示要使用的格式。 转到 https://go.microsoft.com/fwlink/?linkid=2180104https://go.microsoft.com/fwlink/?linkid=2180105

    省略此字段或提供 null 将导致尽最大努力分析日期。

  • Culture:如果 Format 不为 null,则 Culture 会控制某些格式说明符。 例如,在使用 "en-US" 时,"MMM""Jan", "Feb", "Mar", ...,而在使用 "ru-RU" 时,"MMM""янв", "фев", "мар", ...。 当 Formatnull 时,Culture 控制要使用的默认格式。 当 Culturenull 或被省略时,将使用 Culture.Current

若要支持旧工作流,options 也可以是文本值。 这与 options = [Format = null, Culture = options] 具有相同的行为。

示例 1

"2010-12-31T01:30:00-08:00" 转换为 datetimezone 值。

使用情况

DateTimeZone.FromText("2010-12-31T01:30:00-08:00")

输出

#datetimezone(2010, 12, 31, 1, 30, 0, -8, 0)

示例 2

使用自定义格式和德语区域性进行转换。

使用情况

DateTimeZone.FromText("30 Dez 2010 02:04:50.369730 +02:00", [Format="dd MMM yyyy HH:mm:ss.ffffff zzz", Culture="de-DE"])

输出

#datetimezone(2010, 12, 30, 2, 4, 50.36973, 2, 0)

示例 3

使用 ISO 8601 进行转换。

使用情况

DateTimeZone.FromText("2009-06-15T13:45:30.0000000-07:00", [Format="O", Culture="en-US"])

输出

#datetimezone(2009, 6, 15, 13, 45, 30, -7, 0)

results matching ""

    No results matching ""