共用方式為


Replacer.ReplaceValue

語法

Replacer.ReplaceValue(value as any, old as any, new as any) as any

關於

new 值取代原始 value 中的 old 值。 這個取代子函式可用於 List.ReplaceValueTable.ReplaceValue 中。

範例 1

以值 10 取代值 11。

使用方式

Replacer.ReplaceValue(11, 11, 10)

輸出

10