Replacer.ReplaceValue(value as any, old as any, new as any) as any
使用 new 值替换原始 value 中的 old 值。可以在 List.ReplaceValue 和 Table.ReplaceValue 中使用此替换器函数。
new
value
old
List.ReplaceValue
Table.ReplaceValue
使用值 10 替换值 11。
Replacer.ReplaceValue(11, 11, 10)
10