List.ReplaceRange
แทนที่จำนวนนับของค่าโดยเริ่มต้นในตำแหน่งที่มีค่าการแทนที่
Syntax
List.ReplaceRange(
list as list,
index as number,
count as number,
replaceWith as list
) as list
Remarks
แทนที่ค่า count
ใน list
ด้วยรายการ replaceWith
โดยเริ่มต้นในตำแหน่งที่ระบุ index
Examples
Example #1
แทนที่ {7, 8, 9} ในรายการ {1, 2, 7, 8, 9, 5} ด้วย {3, 4}
List.ReplaceRange({1, 2, 7, 8, 9, 5}, 2, 3, {3, 4})
Result:
{1, 2, 3, 4, 5}
Category
List.Transformation functions