Flavio.Santos.TextNormalizer 1.0.5

dotnet add package Flavio.Santos.TextNormalizer --version 1.0.5
                    
NuGet\Install-Package Flavio.Santos.TextNormalizer -Version 1.0.5
                    
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="Flavio.Santos.TextNormalizer" Version="1.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flavio.Santos.TextNormalizer" Version="1.0.5" />
                    
Directory.Packages.props
<PackageReference Include="Flavio.Santos.TextNormalizer" />
                    
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 Flavio.Santos.TextNormalizer --version 1.0.5
                    
#r "nuget: Flavio.Santos.TextNormalizer, 1.0.5"
                    
#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.
#addin nuget:?package=Flavio.Santos.TextNormalizer&version=1.0.5
                    
Install Flavio.Santos.TextNormalizer as a Cake Addin
#tool nuget:?package=Flavio.Santos.TextNormalizer&version=1.0.5
                    
Install Flavio.Santos.TextNormalizer as a Cake Tool

FDS.TextNormalizer

A lightweight C# library for text normalization.
Removes diacritics (accents), trims whitespace, and converts text to uppercase invariant — ideal for standardizing input data before processing, searching, or indexing.

NuGet NuGet Downloads License .NET Core

📦 Installation

You can install this package via NuGet Package Manager:

dotnet add package Flavio.Santos.TextNormalizer --version 1.0.5

Or using Package Manager Console:

Install-Package Flavio.Santos.TextNormalizer -Version 1.0.5

🧪 Usage

using TextNormalizer;

string input = " João da Silva ";
string normalized = Normalizer.Normalize(input);

// Output: "JOAO DA SILVA"
Console.WriteLine(normalized);

✨ Features

  • Removes accents (e.g. "ação" → "ACAO")
  • Trims leading and trailing whitespace
  • Converts text to uppercase using culture-invariant rules
  • Simple and dependency-free

📦 Installation

Install via NuGet Package Manager:

Product 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 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.5 129 4/7/2025
1.0.4 127 4/7/2025
1.0.3 134 4/7/2025
1.0.2 60 4/5/2025
1.0.1 64 4/5/2025
1.0.0 61 4/5/2025