Skip to main content

Text.AfterDelimiter

Text.AfterDelimiter

Syntax

Text.AfterDelimiter(
text as text,
delimiter as text,
optional index as any
) as any

Remarks

Returns the portion of text after the specified delimiter. An optional numeric index indicates which occurrence of the delimiter should be considered. An optional list index indicates which occurrence of the delimiter should be considered, as well as whether indexing should be done from the start or end of the input.

Examples

Example #1

Get the portion of "111-222-333" after the (first) hyphen.

Text.AfterDelimiter("111-222-333", "-")

Result:

"222-333"

Example #2

Get the portion of "111-222-333" after the second hyphen.

Text.AfterDelimiter("111-222-333", "-", 1)

Result:

"333"

Example #3

Get the portion of "111-222-333" after the second hyphen from the end.

Text.AfterDelimiter("111-222-333", "-", {1, RelativePosition.FromEnd})

Result:

"222-333"

Category

Text.Transformations