我想编写一个使用字符串值和起始索引号和计数的 UDF:
GetValueUDF("i am 18 years old.",6,2) output: 18 , 6: .nth 起点, 2: count
GetValueUDF("我 101 岁。",6,3) 输出:101
GetValueUDF("我 101 岁。",1,4) 输出:"我是"
我想编写一个使用字符串值和起始索引号和计数的 UDF:
GetValueUDF("i am 18 years old.",6,2) output: 18 , 6: .nth 起点, 2: count
GetValueUDF("我 101 岁。",6,3) 输出:101
GetValueUDF("我 101 岁。",1,4) 输出:"我是"