SharperHacks.CoreLibs.StringExtensions
1.0.1
This package has a SemVer 2.0.0 package version: 1.0.1+built.by.JwD.30517c7.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package SharperHacks.CoreLibs.StringExtensions --version 1.0.1
NuGet\Install-Package SharperHacks.CoreLibs.StringExtensions -Version 1.0.1
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="SharperHacks.CoreLibs.StringExtensions" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SharperHacks.CoreLibs.StringExtensions --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SharperHacks.CoreLibs.StringExtensions, 1.0.1"
#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.
// Install SharperHacks.CoreLibs.StringExtensions as a Cake Addin #addin nuget:?package=SharperHacks.CoreLibs.StringExtensions&version=1.0.1 // Install SharperHacks.CoreLibs.StringExtensions as a Cake Tool #tool nuget:?package=SharperHacks.CoreLibs.StringExtensions&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
StringExtensions Library for .NET
SharperHacks.CoreLibs.StringExtensions
Some useful string extensions.
Licensed under the Apache License, Version 2.0. See LICENSE.
Contact: joseph@sharperhacks.org
Nuget: https://www.nuget.org/packages/SharperHacks.CoreLibs.Constraints
Targets
- net8.0
- net9.0
Classes
StringExtensions
Static class implementing static string extension methods:
/// Determines whether any of the elements in values exists in str (no LINQ).
public static bool ContainsAny(this string str, params char[] values) ...
public static bool ContainsAny(this string str, params string[] values) ...
/// Determine if string contains only decimal digits.
public static bool IsAllDecimalDigits(this string str) ...
/// Determine if string contains only hex digits (case insensitive).
public static bool IsAllHexDigits(this string str, bool prefixRequired = false) ...
/// Determine whether the string contains only the characters in the specified set.
public static bool IsLimitedToSetOf(this string str, ImmutableHashSet<char> set) ...
/// Determines whether the string contains only the characters in the specified interval.
public static bool IsLimitedToRange(this string str, IInterval<char> range) ...
/// Convert a string representation of an encoding to the appropriate Encoding type.
public static Encoding ToEncoding(this string str) ...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- SharperHacks.CoreLibs.Constants (>= 4.0.0)
- SharperHacks.CoreLibs.Constraints (>= 4.0.1)
- SharperHacks.CoreLibs.Math (>= 3.0.1)
-
net9.0
- SharperHacks.CoreLibs.Constants (>= 4.0.0)
- SharperHacks.CoreLibs.Constraints (>= 4.0.1)
- SharperHacks.CoreLibs.Math (>= 3.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SharperHacks.CoreLibs.StringExtensions:
Package | Downloads |
---|---|
SharperHacks.CoreLibs.CommandLineInterface
Command line parser. |
GitHub repositories
This package is not used by any popular GitHub repositories.