Skip to content

shayvt/hebrew-acronym-util

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hebrew Acronym Util

This is a C# utility library for handling Hebrew acronyms.

Usage

To use this library, create an instance of CategorizedHebrewAcronyms, set the Categories property with the desired categories, and then call the Initialize method to load the acronyms. You can then use the ConvertAcronymToWords method to convert acronyms to words.

CategorizedHebrewAcronyms acronyms = new()
        {
            Categories =
            [
                AcronymCategory.Common,
                AcronymCategory.Judaism
            ]
        };
await acronyms.Initialize();
var words = acronyms.ConvertAcronymToWords("""בנ"א""");
Console.WriteLine(words); // בני אדם

About

C# Utility library for handling Hebrew acronyms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages