List.PositionOf
List.PositionOf(list as list, value as any, optional occurrence as nullable number,optional equationCriteria as any) as any
返回值 value
在列表 list
中出现时的偏移量。如果值未出现,则返回 -1。
可以指定可选的出现次数参数 occurrence
。
occurrence
: 要报告的最大出现次数。
示例:
查找列表 {1, 2, 3} 中出现值 3 的位置。
使用情况:
List.PositionOf({1, 2, 3}, 3)
输出:
2