共用方式為


Time.FromText

語法

Time.FromText(text as nullable text, optional options as any) as nullable time

關於

從文字表示法 text 建立 time 值。 您可以提供選用 record 參數 options 來指定其他屬性。 record 可以包含下列欄位:

  • Formattext 值,指出要使用的格式。 如需詳細資料,請移至 https://go.microsoft.com/fwlink/?linkid=2180104https://go.microsoft.com/fwlink/?linkid=2180105。 省略此欄位或提供 null,則會竭盡所能剖析時間。

  • Culture:當 Format 不是 null 時,Culture 控制某些格式規範。 例如,在 "en-US" 中,"tt""AM" or "PM",而在 "ar-EG" 中,"tt""ص" or "م"。 當 Formatnull 時,Culture 會控制要使用的預設格式。 當 Culturenull 或將其省略時,會使用 Culture.Current

若要支援舊版工作流程,options 也可能是文字值。 這具有與 options = [Format = null, Culture = options] 相同的行為。

範例 1

"10:12:31am" 轉換為時間值。

使用方式

Time.FromText("10:12:31am")

輸出

#time(10, 12, 31)

範例 2

"1012" 轉換為時間值。

使用方式

Time.FromText("1012")

輸出

#time(10, 12, 00)

範例 3

"10" 轉換為時間值。

使用方式

Time.FromText("10")

輸出

#time(10, 00, 00)