Optimize String.Replace(string, string) #44088
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We can significantly improve its throughput for a few scenarios:
This does come at a measurable cost when the oldValue is really common and tightly packed, e.g. searching for "aa" in "aaaaaaaaaaaaaaaaaa", so we can decide whether the tradeoff is the right one.
Some example results:
"This is a test. This is only a test.".Replace("!", "")
is 4x faster.src.Replace("\r\n", "\n")
is 2.3x faster.guidWithDashes.Replace("-", "")
is 10% faster."aaaaaaaaaaaaaaaaaaaaaa".Replace("a", "bbb")
and"aaaaaaaaaaaaaaaaaaaaaa".Replace("aa", "bbb")
are both 2x slower, as we end up using IndexOf to search fora
that's the very next character.Basically it comes down to whether we believe vectorization is good or bad for this use case, whether the thing being searched for will be tightly packed or not.
Contributes to (or fixes?) #44061