Merijn Geurts
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Core/System/AbpStringExtensions.cs
|
|
|
@ -213,7 +213,7 @@ public static class AbpStringExtensions |
|
|
|
var replaceLength = replace.Length; |
|
|
|
var newLength = str.Length - searchLength + replaceLength; |
|
|
|
|
|
|
|
Span<char> buffer = stackalloc char[newLength]; |
|
|
|
Span<char> buffer = newLength <= 1024 ? stackalloc char[newLength] : new char[newLength]; |
|
|
|
|
|
|
|
// Copy the part of the original string before the search term
|
|
|
|
str.AsSpan(0, pos).CopyTo(buffer); |
|
|
|
|