ตามมาตรฐานECMA-262 String.prototype.replace จะเรียกRegExp.prototype [@@ replace]ซึ่งบอกว่า:
11. Repeat, while done is false
a. Let result be ? RegExpExec(rx, S).
b. If result is null, set done to true.
c. Else result is not null,
i. Append result to the end of results.
ii. If global is false, set done to true.
iii. Else,
1. Let matchStr be ? ToString(? Get(result, "0")).
2. If matchStr is the empty String, then
a. Let thisIndex be ? ToLength(? Get(rx, "lastIndex")).
b. Let nextIndex be AdvanceStringIndex(S, thisIndex, fullUnicode).
c. Perform ? Set(rx, "lastIndex", nextIndex, true).
ที่rx
เป็น/.*/g
และเป็นS
'asdf'
ดู 11.c.iii.2.b:
ข ให้ nextIndex เป็น AdvanceStringIndex (S, thisIndex, fullUnicode)
ดังนั้นในความ'asdf'.replace(/.*/g, 'x')
เป็นจริง:
- ผลลัพธ์ (ไม่ได้กำหนด), results =
[]
, lastIndex =0
- ผลลัพธ์ =
'asdf'
, ผลลัพธ์ = [ 'asdf' ]
, lastIndex =4
- ผล =
''
ผล = [ 'asdf', '' ]
, lastIndex = 4
, AdvanceStringIndex
ตั้ง lastIndex ไป5
- result =
null
, results = [ 'asdf', '' ]
, return
ดังนั้นจึงมี 2 แมทช์
"asdf".match(/.*/g)
ส่งคืน ["asdf", ""]