ByteDev.Strings
9.5.0
Install-Package ByteDev.Strings -Version 9.5.0
dotnet add package ByteDev.Strings --version 9.5.0
<PackageReference Include="ByteDev.Strings" Version="9.5.0" />
paket add ByteDev.Strings --version 9.5.0
#r "nuget: ByteDev.Strings, 9.5.0"
// Install ByteDev.Strings as a Cake Addin
#addin nuget:?package=ByteDev.Strings&version=9.5.0
// Install ByteDev.Strings as a Cake Tool
#tool nuget:?package=ByteDev.Strings&version=9.5.0
ByteDev.Strings
Library of extended string related functionality.
Installation
ByteDev.Strings has been written as a .NET Standard 2.0 library, so you can consume it from a .NET Core or .NET Framework 4.6.1 (or greater) application.
ByteDev.Strings is hosted as a package on nuget.org. To install from the Package Manager Console in Visual Studio run:
Install-Package ByteDev.Strings
Further details can be found on the nuget page.
Release Notes
Releases follow semantic versioning.
Full details of the release notes can be viewed on GitHub.
Usage
String Extensions
To use any of the extension method reference the ByteDev.Strings
namespace.
String extension methods:
- ContainsAny
- ContainsOnly
- ContainsIgnoreCase
- CountOccurrences
- DetectNewLineType
- EnsureStartsWith
- EnsureEndsWith
- FormatWith
- GetEndNewLine
- InsertBeforeUpperCase
- IsAscii
- IsDigit
- IsDigits
- IsEmpty
- IsEmailAddress
- IsFalse
- IsGuid
- IsHttpUrl
- IsIpAddress
- IsLengthBetween
- IsLetters
- IsLowerCase
- IsNullOrEmpty
- IsNullOrWhitespace
- IsNumeric
- IsPhoneNumber
- IsUpperCase
- IsUri
- IsTime
- IsTrue
- IsXml
- Left
- LeftWithEllipsis
- LeftWithInnerEllipsis
- NormalizeNewLinesToUnix
- NormalizeNewLinesToWindows
- Pluralize
- Remove
- RemoveBracketedText
- RemoveEndNewLine
- RemoveEndsWith
- RemoveLeadingZeros
- RemoveNonDigits
- RemoveStartsWith
- RemoveWhiteSpace
- Repeat
- ReplaceFirst
- ReplaceLast
- ReplaceToken
- Reverse
- Right
- SafeGetChar
- SafeLength
- SafeSubstring
- ToBool
- ToBoolOrDefault
- ToByteArray
- ToCsv
- ToDateTime
- ToDateTimeOrDefault
- ToEnum
- ToInt
- ToIntOrDefault
- ToKeyValuePair
- ToLines
- ToLinesList
- ToLong
- ToLongOrDefault
- ToMemoryStream
- ToUri
- ToTitleCase
- Wrap
StringBuilder extension methods:
- AppendIfEmpty
- AppendIfNotEmpty
- AppendLines
- AppendValues
- IsEmpty
CaseConverter
CaseConverter
can be used to change the case of different strings.
Reference namespace: ByteDev.Strings.Case
.
CaseConverter
has the following methods:
- ToCamelCase
- ToKebabCase
- ToPascalCase
- ToSnakeCase
- ToSnakeUpperCase
string s1 = CaseConverter.ToCamelCase("snake_case", CaseType.SnakeCase); // "snakeCase"
string s2 = CaseConverter.ToPascalCase("kebab-case", CaseType.KebabCase); // "KebabCase"
bool isPascalCase = s2.IsPascalCase(); // true
There are also a number of case related string extension methods:
- IsCamelCase
- IsKebabCase
- IsPascalCase
- IsSnakeCase
- IsSnakeUpperCase
- IsCaseType
StringCommands
Various StringCommands
are included that encapsulate different string operations.
Reference namespace: ByteDev.Strings.StringCommands
.
var c1 = new CaseToLowerCommand().SetValue("John Smith");
var c2 = new CopyPasteCommand(0, 4, 0).SetValue("John Smith");
IStringCommandInvoker invoker = new StringCommandInvoker();
invoker.SetCommands(c1, c2);
invoker.Invoke();
// c1.Result == "john smith"
// c2.Result == "JohnJohn Smith"
Commands can also be chained together using the StringChainedCommand
:
// Note: we don't have to call SetValue on each command just on StringChainedCommand
// as this will provide the initial value.
var commands = new List<StringCommand>
{
new CaseToLowerCommand(),
new InsertCommand(100, " lives in England."),
new CutPasteCommand(5, 5, 0)
};
var c1 = new StringChainedCommand(commands).SetValue("John Smith");
IStringCommandInvoker invoker = new StringCommandInvoker();
invoker.SetCommands(c1);
invoker.Invoke();
// command.Result == "smithjohn lives in England."
ToStringBuilder
The assembly also contains the type ToStringBuilder
to help return string representations of an object when overriding it's ToString
method.
Reference namespace: ByteDev.Strings
.
public class MyClass
{
public string Name => "John";
public string Age => null;
public IEnumerable<string> Address => new List<string>
{
"123 Highstreet",
"London",
"UK"
};
public override string ToString()
{
return new ToStringBuilder()
.WithNullValue("<null>")
.WithStringQuoteChar('\'')
.With(nameof(Name), Name)
.With(nameof(Age), Age)
.With(nameof(Address), Address)
.Build();
}
}
// ...
string s = new MyClass().ToString();
// s == "Name: 'John', Age: <null>, Address: { '123 Highstreet', 'London', 'UK' }"
Masker
Use the Masker
type to help mask different types of strings.
Reference namespace: ByteDev.Strings.Masking
.
// Initialize Masker type
var options = new MaskerOptions
{
MaskChar = '#',
MaskSpace = true
};
var masker = new Masker(options);
// Mask a payment card number
string card = masker.PaymentCard("4111111111111111");
// card == "############1111"
// Mask an email address
string email = masker.EmailAddress("john.smith@gmail.co.uk");
// email == "j#########@#####.co.uk"
// Mask a custom string
string custom = masker.Custom("12345", 1, 2);
// custom == "1##45"
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (6)
Showing the top 5 NuGet packages that depend on ByteDev.Strings:
Package | Downloads |
---|---|
ByteDev.Io
Set of IO related .NET utility classes. |
|
ByteDev.ResourceIdentifier
.NET Standard library of resource identifier (URI) related functionality. |
|
ByteDev.Nuget.Nuspec
.NET Standard library for reading nuget nuspec manifest files. |
|
ByteDev.Subtitles.SubRip
.NET Standard library to help when using SubRip subtitles. |
|
ByteDev.Validation.Fluent
Extensions and functionality to use with the Fluent Validation library. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
9.5.0 | 279 | 11/30/2021 |
9.4.0 | 312 | 8/16/2021 |
9.3.0 | 786 | 7/14/2021 |
9.2.0 | 242 | 5/27/2021 |
9.1.0 | 483 | 3/29/2021 |
9.0.0 | 153 | 3/15/2021 |
8.3.0 | 215 | 3/10/2021 |
8.2.0 | 156 | 1/28/2021 |
8.1.0 | 254 | 12/31/2020 |
8.0.0 | 329 | 11/10/2020 |
7.0.0 | 211 | 11/5/2020 |
6.0.0 | 321 | 9/30/2020 |
5.0.0 | 208 | 9/28/2020 |
4.1.0 | 384 | 7/17/2020 |
4.0.0 | 224 | 7/1/2020 |
3.0.0 | 274 | 6/16/2020 |
2.1.0 | 294 | 5/29/2020 |
2.0.1 | 268 | 5/29/2020 |
2.0.0 | 233 | 5/28/2020 |
1.0.0 | 274 | 4/30/2020 |