Text.Range
Text.Range(text as nullable text, offset as number, optional count as nullable number) as nullable text
从文本 text
中返回在偏移量 offset
中找到的子字符串。
可以包含一个可选参数 count
,以指定要返回多少个字符。
示例:
从文本 "Hello World" 中查找从索引 6 开始的子字符串。
使用情况:
Text.Range("Hello World", 6)
输出:
"World"
示例:
从文本 "Hello World Hello" 中查找从索引 6 开始且涵盖 5 个字符的子字符串。
使用情况:
Text.Range("Hello World Hello", 6, 5)
输出:
"World"