This is not an anomaly: .* can match anything.
You ask to replace all occurrences:
- the first occurrence does match the whole string, the regex engine therefore starts from the end of input for the next match;
- but
.* also matches an empty string! It therefore matches an empty string at the end of the input, and replaces it with a.
Using .+ instead will not exhibit this problem since this regex cannot match an empty string (it requires at least one character to match).
Now, why .* behaves like it does and does not match more than twice (it theoretically could) is an interesting thing to consider. See below:
# Before first run
regex: |.*
input: |whatever
# After first run
regex: .*|
input: whatever|
#before second run
regex: |.*
input: whatever|
#after second run: since .* can match an empty string, it it satisfied...
regex: .*|
input: whatever|
# However, this means the regex engine matched an empty input.
# All regex engines, in this situation, will shift
# one character further in the input.
# So, before third run, the situation is:
regex: |.*
input: whatever<|EndOfInput>
# Nothing can ever match end of input: out
Generally speaking: avoid using any of .+ and .*, and avoid at all costs their "lazy" versions .*? and .+?, since the latter bear a HUGE (and often overlooked) cost and are 99+% of the time easily replaced with a complemented character class.