Text.SplitAny

構文

Text.SplitAny(text as text, separators as text) as list

バージョン情報

指定した区切り記号 separators の任意の文字に基づき、テキスト値 text を分割した結果のテキスト値の一覧が返されます。

例 1

テキスト値 "Jamie|Campbell|Admin|Adventure Works|www.adventure-works.com" から一覧を作成します。

使用方法

Text.SplitAny("Jamie|Campbell|Admin|Adventure Works|www.adventure-works.com", "|")

出力

{
    "Jamie",
    "Campbell",
    "Admin",
    "Adventure Works",
    "www.adventure-works.com"
}