メインコンテンツまでスキップ

Text.Middle

指定の長さまでのサブ文字列を返します。

Syntax

Text.Middle(
text as text,
start as number,
optional count as number
) as text

Remarks

オフセット startcount 文字または text の末尾までを返します。

Examples

Example #1

テキスト "Hello World" のインデックス 6 で始まり 5 文字のサブ文字列を検出します。

Text.Middle("Hello World", 6, 5)

Result:

"World"

Example #2

テキスト "Hello World" のインデックス 6 で始まり末尾までのサブ文字列を検出します。

Text.Middle("Hello World", 6, 20)

Result:

"World"

Category

Text.Extraction