Skip to content

Commit e7fa7b9

Browse files
authored
Merge pull request #241 from Joy-less/optimize-Replace
Optimize & simplify `Replace(char, char)`
2 parents eee09d3 + 9939cd6 commit e7fa7b9

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ All notable changes to **ValueStringBuilder** will be documented in this file. T
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- Optimized `Replace(char, char)` (by @Joy-less in #241)
12+
- Optimized `Replace(ReadOnlySpan<char>, ReadOnlySpan<char>)` when both spans are length 1 (by @Joy-less in #241)
13+
914
## [2.4.0] - 2025-02-21
1015

1116
### Added

src/LinkDotNet.StringBuilder/ValueStringBuilder.Replace.cs

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,7 @@ public readonly void Replace(char oldValue, char newValue, int startIndex, int c
2626
ArgumentOutOfRangeException.ThrowIfLessThan(startIndex, 0);
2727
ArgumentOutOfRangeException.ThrowIfGreaterThan(startIndex + count, Length);
2828

29-
for (var i = startIndex; i < startIndex + count; i++)
30-
{
31-
if (buffer[i] == oldValue)
32-
{
33-
buffer[i] = newValue;
34-
}
35-
}
29+
buffer.Slice(startIndex, count).Replace(oldValue, newValue);
3630
}
3731

3832
/// <summary>
@@ -97,6 +91,12 @@ public void Replace(scoped ReadOnlySpan<char> oldValue, scoped ReadOnlySpan<char
9791
return;
9892
}
9993

94+
if (oldValue.Length == 1 && newValue.Length == 1)
95+
{
96+
Replace(oldValue[0], newValue[0], startIndex, count);
97+
return;
98+
}
99+
100100
var index = startIndex;
101101
var remainingChars = count;
102102

src/LinkDotNet.StringBuilder/ValueStringBuilderExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static ValueStringBuilder ToValueStringBuilder(this System.Text.StringBui
2929
{
3030
ArgumentNullException.ThrowIfNull(builder);
3131

32-
var valueStringBuilder = new ValueStringBuilder();
32+
var valueStringBuilder = new ValueStringBuilder(builder.Length);
3333
foreach (var chunk in builder.GetChunks())
3434
{
3535
valueStringBuilder.Append(chunk.Span);

0 commit comments

Comments
 (0)