閱讀英文

共用方式為


Date.FromText

語法

Date.FromText(text as nullable text, optional options as any) as nullable date

關於

從文字表示法建立日期值。

  • text:要涵蓋至日期的文字值。

  • options record:選擇性,可供提供以指定其他屬性。 record 可以包含下列欄位:

    • Formattext 值,指出要使用的格式。 如需詳細資訊,請移至 標準日期和時間格式字串自定義日期和時間格式字串。 省略此欄位,或提供 null 使用最佳努力剖析日期的結果。
    • Culture:當 不是 Null 時 FormatCulture 會控制某些格式規範。 例如,在 "en-US" 中,"MMM""Jan", "Feb", "Mar", ...,而在 "ru-RU" 中,"MMM""янв", "фев", "мар", ...。 當 Formatnull 時,Culture 會控制要使用的預設格式。 當 Culturenull 或被省略時,將使用 Culture.Current

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

範例 1

"2010-12-31" 轉換為 date 值。

使用方式

Date.FromText("2010-12-31")

輸出

#date(2010, 12, 31)

範例 2

使用自訂格式和德文文化特性進行轉換。

使用方式

Date.FromText("30 Dez 2010", [Format="dd MMM yyyy", Culture="de-DE"])

輸出

#date(2010, 12, 30)

範例 3

在西曆中尋找對應於回曆 1400 年初的日期。

使用方式

Date.FromText("1400", [Format="yyyy", Culture="ar-SA"])

輸出

#date(1979, 11, 20)

範例 4

將 [張貼日期] 資料行中含有縮寫月份的義大利文文字日期轉換成日期值。

使用方式

let
    Source = #table(type table [Account Code = text, Posted Date = text, Sales = number],
    {
        {"US-2004", "20 gen. 2023", 580},
        {"CA-8843", "18 lug. 2024", 280},
        {"PA-1274", "12 gen. 2023", 90},
        {"PA-4323", "14 apr. 2023", 187},
        {"US-1200", "14 dic. 2023", 350},
        {"PTY-507", "4 giu. 2024", 110}
    }),
    #"Converted Date" = Table.TransformColumns(
        Source, 
        {"Posted Date", each Date.FromText(_, [Culture = "it-IT"]), type date}
    )
in
    #"Converted Date"

輸出

#table(type table [Account Code = text, Posted Date = date, Sales = number],
{
    {"US-2004", #date(2023, 1, 20), 580},
    {"CA-8843", #date(2024, 7, 18), 280},
    {"PA-1274", #date(2023, 1, 12), 90},
    {"PA-4323", #date(2023, 4, 14), 187},
    {"US-1200", #date(2023, 12, 14), 350},
    {"PTY-507", #date(2024, 6, 4), 110}
})