Soenneker.Extensions.Enumerable.String 4.0.1466

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable.String --version 4.0.1466
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable.String -Version 4.0.1466
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Extensions.Enumerable.String" Version="4.0.1466" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable.String" Version="4.0.1466" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Extensions.Enumerable.String" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Extensions.Enumerable.String --version 4.0.1466
                    
#r "nuget: Soenneker.Extensions.Enumerable.String, 4.0.1466"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Extensions.Enumerable.String@4.0.1466
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Extensions.Enumerable.String&version=4.0.1466
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable.String&version=4.0.1466
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Extensions.Enumerable.String

Joining, filtering, case-insensitive searching, casing, deduplication, and compound-ID projection extensions for string sequences.

Installation

dotnet add package Soenneker.Extensions.Enumerable.String

Join values

using Soenneker.Extensions.Enumerable.String;

string csv = new[] { "red", "green", "blue" }
    .ToCommaSeparatedString(includeSpace: true);
// red, green, blue

string path = new[] { "api", "customers", "42" }
    .ToSeparatedString('/');
// api/customers/42

Both methods return an empty string for a null or empty source. A null item is represented as an empty field, so new[] { "a", null, "b" } joined with commas becomes a,,b. Joining is immediate and visits the source once.

ToSeparatedStringFormattable() is the allocation-conscious overload for value types implementing ISpanFormattable; it avoids the boxing that the unconstrained overload can require. Formatting uses the type’s default format with a null format provider.

Search strings

string[] names = ["Alpha", "Beta"];

names.ContainsAPart("PH");         // true; ignores case by default
names.ContainsAPart("PH", false);  // false; ordinal, case-sensitive
names.ContainsIgnoreCase("alpha"); // true
names.StartsWithIgnoreCase("al");  // true
names.EndsWithIgnoreCase("TA");    // true

Searches are ordinal, skip null elements, stop at the first match, and do not allocate normalized copies. ContainsAPart() returns false for a null source or null/empty search text. The other search methods require non-null source and search arguments. An empty prefix or suffix matches when the sequence contains at least one non-null string.

Filter, normalize, and deduplicate

IEnumerable<string?> optionalValues = ["Alpha", null, " ", "alpha"];
IEnumerable<string> nonEmpty = optionalValues.ExceptNullOrEmpty();
IEnumerable<string> nonBlank = optionalValues.ExceptNullOrWhiteSpace();

IEnumerable<string> values = nonBlank;
IEnumerable<string> lower = values.ToLower();
IEnumerable<string> distinct = values.DistinctIgnoreCase();
HashSet<string> set = values.ToHashSetIgnoreCase();

These sequence-returning operations are lazy except ToHashSetIgnoreCase(), which materializes a new ordinal case-insensitive set. ExceptNullOrEmpty() preserves whitespace-only strings; ExceptNullOrWhiteSpace() removes them. ToLower() and ToUpper() use invariant casing and turn null elements into empty strings. DistinctIgnoreCase() skips nulls, keeps the first casing encountered, and preserves order.

Split compound IDs

List<(string PartitionKey, string DocumentId)> ids = new[]
{
    "customer-42:order-100",
    "standalone"
}.ToSplitIds();

// ("customer-42", "order-100")
// ("standalone", "standalone")

Each ID is split at its last colon, so earlier colons remain part of a compound partition key. The result is immediately materialized in source order. Null or empty IDs are rejected by the underlying split operation.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Soenneker.Extensions.Enumerable.String:

Package Downloads
Soenneker.Extensions.Object

A collection of helpful Object extension methods

Soenneker.SendGrid.Contacts

Adds, retrieves, searches, and deletes SendGrid Marketing contacts.

Soenneker.HttpClients.LoggingHandler

A handler that allows for injecting into HttpClients to log requests and responses

Soenneker.Email.Sender

A high-level utility responsible for orchestrating the creation and delivery of templated email messages

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1466 2,680 9/25/2026
4.0.1465 48 9/25/2026
4.0.1464 73 9/24/2026
4.0.1462 42 9/24/2026
4.0.1461 21,468 9/16/2026
4.0.1460 147 9/16/2026
4.0.1459 180 9/16/2026
4.0.1458 179 9/15/2026
4.0.1457 91 9/15/2026
4.0.1456 12,611 9/13/2026
4.0.1455 345 9/13/2026
4.0.1454 1,427 9/13/2026
4.0.1453 1,157 9/13/2026
4.0.1451 979 9/13/2026
4.0.1450 2,631 9/12/2026
4.0.1449 102 9/12/2026
4.0.1447 172 9/12/2026
4.0.1445 403 9/12/2026
4.0.1444 16,999 9/9/2026
4.0.1443 2,146 9/9/2026
Loading failed

Updated NuGet packages