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

Text.BetweenDelimiters

Text.BetweenDelimiters

Syntax

Text.BetweenDelimiters(
text as text,
startDelimiter as text,
endDelimiter as text,
optional startIndex as any,
optional endIndex as any
) as any

Remarks

指定した startDelimiterendDelimiter の間の text の部分を返します。 省略可能な数値 startIndex は、想定される startDelimiter の回数を示します。 省略可能なリスト startIndex は、想定される startDelimiter の回数、およびインデックス作成を入力の先頭と末尾のどちらから行うかを示しています。 endIndex は類似していますが、インデックス作成が startIndex に対して相対的に行われる点が異なります。

Examples

Example #1

(最初の) 開きかっことそれに続く (最初の) 閉じかっこの間の "111 (222) 333 (444)" の部分を取得します。

Text.BetweenDelimiters("111 (222) 333 (444)", "(", ")")

Result:

"222"

Example #2

2 番目の開きかっことそれに続く最初の閉じかっこの間の "111 (222) 333 (444)" の部分を取得します。

Text.BetweenDelimiters("111 (222) 333 (444)", "(", ")", 1, 0)

Result:

"444"

Example #3

最後から 2 番目の開きかっことそれに続く2 番目の閉じかっこの間の "111 (222) 333 (444)" の部分を取得します。

Text.BetweenDelimiters("111 (222) 333 (444)", "(", ")", {1, RelativePosition.FromEnd}, {1, RelativePosition.FromStart})

Result:

"222) 333 (444"

Category

Text.Transformations