Num2WordsNet 0.1.0

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

Num2WordsNet

Num2WordsNet is a port of the Python project num2words to the C# programming language.

The num2words library converts numerical values into their word-based representations across multiple languages. For instance, the number "42" is transformed into "forty-two" (or its equivalent in other supported languages). A comprehensive list of supported languages is provided below.

Usage

Pass a numerical value as a parameter to the Num2Words.Process method.

// Convert a string-formatted number (uses comma as thousand separator and dot as decimal point)
string result = Num2Words.Process("24,120.10");
Console.WriteLine(result);
// Output: twenty-four thousand, one hundred and twenty point one zero

// Convert a decimal number and specify Chechen ("ce") as the target language
result = Num2Words.Process(0.42, lang: "ce");
Console.WriteLine(result);
// Output: ноль а диъ шиъ

// Convert an integer provided as a string
result = Num2Words.Process("42");
Console.WriteLine(result);
// Output: forty-two

Key Optional Parameters

In addition to the numerical input, two primary optional parameters are available: to and lang.

1. Parameter: to (Converter Type)

This parameter specifies the type of conversion to apply. The following values are supported:

  • cardinal (default): Converts numbers to their cardinal form (e.g., "42" → "forty-two").
  • ordinal: Converts numbers to their ordinal form (e.g., "42" → "forty-second").
  • ordinal_num: Converts numbers to a language-specific ordinal number format (the exact format varies by language).
  • year: Converts numbers to a year-specific reading (e.g., "1999" → "nineteen ninety-nine" in English).
  • currency: Converts numbers to a monetary word representation (e.g., "12.5" → "twelve dollars and fifty cents", with output dependent on the specified currency and language).

2. Parameter: lang (Target Language)

This parameter defines the language used for the word-based representation of the number. Supported values are listed below.

Supported Languages (Values for lang Parameter)

Languages marked with ✔ are fully supported by Num2WordsNet; those marked with ☐ are pending implementation.

Supported Languages

  • en (English, default)
  • am (Amharic)
  • ar (Arabic)
  • az (Azerbaijani)
  • be (Belarusian)
  • bn (Bengali)
  • ca (Catalan)
  • ce (Chechen)

Languages Pending Support

  • cs (Czech)
  • cy (Welsh)
  • da (Danish)
  • de (German)
  • en_GB (English - United Kingdom)
  • en_IN (English - India)
  • en_NG (English - Nigeria)
  • es (Spanish)
  • es_CO (Spanish - Colombia)
  • es_CR (Spanish - Costa Rica)
  • es_GT (Spanish - Guatemala)
  • es_VE (Spanish - Venezuela)
  • eu (Basque; note: previously described as "euro-related terminology"—corrected to standard language code)
  • fa (Persian)
  • fi (Finnish)
  • fr (French)
  • fr_BE (French - Belgium)
  • fr_CH (French - Switzerland)
  • fr_DZ (French - Algeria)
  • he (Hebrew)
  • hi (Hindi)
  • hu (Hungarian)
  • hy (Armenian)
  • id (Indonesian)
  • is (Icelandic)
  • it (Italian)
  • ja (Japanese)
  • kn (Kannada)
  • ko (Korean)
  • kz (Kazakh)
  • mn (Mongolian)
  • lt (Lithuanian)
  • lv (Latvian)
  • nl (Dutch)
  • no (Norwegian)
  • pl (Polish)
  • pt (Portuguese)
  • pt_BR (Portuguese - Brazil)
  • ro (Romanian)
  • ru (Russian)
  • sl (Slovenian)
  • sk (Slovak)
  • sr (Serbian)
  • sv (Swedish)
  • te (Telugu)
  • tet (Tetum)
  • tg (Tajik)
  • tr (Turkish)
  • th (Thai)
  • uk (Ukrainian)
  • vi (Vietnamese)
  • zh (Traditional Chinese, generic)
  • zh_CN (Simplified Chinese - Mainland China)
  • zh_TW (Traditional Chinese - Taiwan, China)
  • zh_HK (Traditional Chinese - Hong Kong, China)

References

[1] Original Python Project: num2words

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-android34.0 is compatible.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-ios18.0 is compatible.  net8.0-maccatalyst was computed.  net8.0-maccatalyst18.0 is compatible.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net8.0-windows10.0.19041 is compatible.  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.  net10.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 4.5

  • .NETFramework 4.6.1

  • .NETFramework 4.7.2

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net8.0-android34.0

    • No dependencies.
  • net8.0-ios18.0

    • No dependencies.
  • net8.0-maccatalyst18.0

    • No dependencies.
  • net8.0-windows10.0.19041

    • 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
0.1.0 287 9/16/2025