Skip to main content

List.ReplaceMatchingItems

นำการแทนที่แต่ละรายการของ { old, new } ไปใช้

Syntax

List.ReplaceMatchingItems(
list as list,
replacements as list,
optional equationCriteria as any
) as list

Remarks

ดำเนินการแทนที่ที่กำหนดให้ไปยังรายการ list การดำเนินการแทนที่ replacements ประกอบด้วยรายการที่มีสองค่า ได้แก่ค่าเดิมและค่าใหม่ ที่ระบุไว้ในรายการ โดยสามารถระบุค่าเกณฑ์สมการที่เลือกได้ equationCriteria เพื่อควบคุมการทดสอบความเท่ากัน

Examples

Example #1

สร้างรายการจาก {1, 2, 3, 4, 5} แทนที่ค่า 5 ด้วย -5 และค่า 1 ด้วย -1

List.ReplaceMatchingItems({1, 2, 3, 4, 5}, {{5, -5}, {1, -1}})

Result:

{-1, 2, 3, 4, -5}

Category

List.Transformation functions