A modern C# string utility library with extension methods for validation, formatting, and cleaning.
dotnet add package Sam.Utilities.StringKitusing Sam.Utilities.StringKit.Extensions;
string name = "hello world";
bool isLettersOnly = name.IsLettersOnly();
string title = name.ToTitleCase();
string cleaned = " hello world ".NormalizeSpaces();IsLettersOnly()IsNumericOnly()IsAlphaNumeric()
ToTitleCase()
RemoveWhiteSpaces()NormalizeSpaces()
MIT