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

Text.Range

オフセットで見つかったサブストリングを返します。

Syntax

Text.Range(
text as text,
offset as number,
optional count as number
) as text

Remarks

テキスト text のオフセット offset で見つかるサブストリングを返します。 省略可能なパラメーター count を使用すると、返す文字数を指定できます。文字数が足りない場合はエラーがスローされます。

Examples

Example #1

インデックス 6 で始まるテキスト "Hello World" のサブストリングを調べます。

Text.Range("Hello World", 6)

Result:

"World"

Example #2

インデックス 6 で始まり、全部で 5 文字になるテキスト "Hello World" のサブストリングを調べます。

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

Result:

"World"

Category

Text.Extraction