diff --git a/CHANGELOG.md b/CHANGELOG.md index 504b28a..d4598ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ All notable changes to **ValueStringBuilder** will be documented in this file. T - implicit cast operator from `string` and `ReadOnlySpan` to the `ValueStringBuilder` with pre-initialized buffer +### Changed + +- various path optimizations for replace logic to use less allocations while being faster + ### Removed - Removed value type overloads for `Append` and `Insert` and just offer `Append(ISpanFormattable)` and `Insert(ISpanFormattable)`, which covers more cases. diff --git a/src/LinkDotNet.StringBuilder/ValueStringBuilder.Replace.cs b/src/LinkDotNet.StringBuilder/ValueStringBuilder.Replace.cs index e8ca4dc..cb07a3b 100644 --- a/src/LinkDotNet.StringBuilder/ValueStringBuilder.Replace.cs +++ b/src/LinkDotNet.StringBuilder/ValueStringBuilder.Replace.cs @@ -135,8 +135,29 @@ public void Replace(scoped ReadOnlySpan oldValue, scoped ReadOnlySpan We can just replace the memory slice + else if (delta == 0) + { + newValue.CopyTo(buffer[index..]); + } + + // newValue is larger than the old value + // First add until the old memory region + // and insert afterwards the rest + else + { + newValue[..oldValue.Length].CopyTo(buffer[index..]); + Insert(index + oldValue.Length, newValue[oldValue.Length..]); + } } } } \ No newline at end of file