Text.Middle
指定の長さまでのサブ文字列を返します。
Syntax
Text.Middle(
    text as text,
    start as number,
    optional count as number
) as text
Remarks
オフセット start で count 文字または text の末尾までを返します。
Examples
Example #1
テキスト "Hello World" のインデックス 6 で始まり 5 文字のサブ文字列を検出します。
Text.Middle("Hello World", 6, 5)
Result:
"World"