Soenneker.Extensions.Spans.ReadOnly.Strings
4.0.30
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Extensions.Spans.ReadOnly.Strings --version 4.0.30
NuGet\Install-Package Soenneker.Extensions.Spans.ReadOnly.Strings -Version 4.0.30
<PackageReference Include="Soenneker.Extensions.Spans.ReadOnly.Strings" Version="4.0.30" />
<PackageVersion Include="Soenneker.Extensions.Spans.ReadOnly.Strings" Version="4.0.30" />
<PackageReference Include="Soenneker.Extensions.Spans.ReadOnly.Strings" />
paket add Soenneker.Extensions.Spans.ReadOnly.Strings --version 4.0.30
#r "nuget: Soenneker.Extensions.Spans.ReadOnly.Strings, 4.0.30"
#:package Soenneker.Extensions.Spans.ReadOnly.Strings@4.0.30
#addin nuget:?package=Soenneker.Extensions.Spans.ReadOnly.Strings&version=4.0.30
#tool nuget:?package=Soenneker.Extensions.Spans.ReadOnly.Strings&version=4.0.30
Soenneker.Extensions.Spans.ReadOnly.Strings
Extension methods for searching, joining, and otherwise processing read-only spans of strings without first materializing another collection.
Installation
dotnet add package Soenneker.Extensions.Spans.ReadOnly.Strings
Usage
using Soenneker.Extensions.Spans.ReadOnly.Strings;
ReadOnlySpan<string> values = ["alpha", "Beta", "gamma"];
bool found = ReadOnlySpanStringExtension.ContainsAPart(values, "bet", StringComparison.OrdinalIgnoreCase); // true
ReadOnlySpan<string?> pieces = ["one", null, "three"];
string joined = ReadOnlySpanStringExtension.JoinStrings(pieces, ',', includeSpace: true);
// "one, , three"
ContainsAPart() skips null elements, stops at the first match, and uses exactly the supplied StringComparison.
JoinStrings() uses a pooled builder. Separators are position-based: a null element contributes no text but still leaves its separator position, as the example shows. An empty span returns ""; includeSpace adds one space after every separator.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Soenneker.Utils.PooledStringBuilders (>= 4.0.27)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Extensions.Spans.ReadOnly.Strings:
| Package | Downloads |
|---|---|
|
Soenneker.Extensions.Enumerable.String
A collection of helpful enumerable string extension methods |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.33 | 16,248 | 8/31/2026 |
| 4.0.32 | 3,504 | 8/30/2026 |
| 4.0.31 | 4,704 | 8/30/2026 |
| 4.0.30 | 83 | 8/29/2026 |
| 4.0.28 | 85 | 8/29/2026 |
| 4.0.27 | 82,995 | 7/28/2026 |
| 4.0.26 | 1,307 | 7/28/2026 |
| 4.0.25 | 21,605 | 7/16/2026 |
| 4.0.24 | 111 | 7/16/2026 |
| 4.0.23 | 30,062 | 6/19/2026 |
| 4.0.22 | 131 | 6/19/2026 |
| 4.0.21 | 29,654 | 6/5/2026 |
| 4.0.20 | 39,240 | 4/23/2026 |
| 4.0.19 | 2,716 | 4/22/2026 |
| 4.0.18 | 43,767 | 3/15/2026 |
| 4.0.17 | 6,976 | 3/12/2026 |
| 4.0.16 | 260 | 3/12/2026 |
| 4.0.15 | 137 | 3/12/2026 |
| 4.0.14 | 755 | 3/12/2026 |
| 4.0.13 | 12,200 | 3/11/2026 |
Describe extension library scope separately from current API