Text.Middle

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

返回 count 个字符,或返回至 text 的结束;采用偏移 start

示例:

从文本 "Hello World" 中查找从索引 6 开始、跨 5 个字符的子字符串。

使用情况:

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

输出:

"World"

示例:

从文本 "Hello World" 中查找从索引 6 开始到结束的子字符串。

使用情况:

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

输出:

"World"

results matching ""

    No results matching ""