Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 713 Bytes

text-middle.md

File metadata and controls

43 lines (27 loc) · 713 Bytes
description title
Learn more about: Text.Middle
Text.Middle

Text.Middle

Syntax

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

About

Returns count characters, or through the end of text; at the offset start.

Example 1

Find the substring from the text "Hello World" starting at index 6 spanning 5 characters.

Usage

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

Output

"World"

Example 2

Find the substring from the text "Hello World" starting at index 6 through the end.

Usage

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

Output

"World"