File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ EndProject
88Project ("{2150E333-8FDC-42A3-9474-1A3956D46DE8}" ) = "Solution Items" , "Solution Items" , "{C9018F64-4917-4F4F-8F78-3A674896029D}"
99 Project Section (SolutionItems ) = preProject
1010 global .json = global .json
11+ readme .md = readme .md
1112 EndProject Section
1213EndProject
1314Project ("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}" ) = "Unidecode.NET" , "src\Unidecode.NET\Unidecode.NET.xproj" , "{A1A9B022-442C-4782-AF37-F8E58E5740A3}"
Original file line number Diff line number Diff line change 1+
2+ Moving https://bitbucket.org/DimaStefantsov/unidecodesharpfork project to GitHub (Dima no longer works with .NET).
3+ Also the goal is to port it to .net core
4+
5+ # Overview
6+
7+ ** Unidecode.NET** is .NET library dll, written in C#.
8+ It provides string or char extension method Unidecode() that returns transliterated string. It supports huge amount of languages.
9+ And it's very easy to add your language if it's not supported already!
10+
11+ #Example code
12+
13+ Take a look at the list of assertions:
14+ ``` cs
15+ Assert .AreEqual (" Bei Jing " , " \u5317\u4EB0 " .Unidecode ());
16+ Assert .AreEqual (" Rabota s kirillitsey" , " Работа с кириллицей" .Unidecode ());
17+ Assert .AreEqual (" aouoAOUO" , " äöűőÄÖŨŐ" .Unidecode ());
18+ Assert .AreEqual (" Hello, World!" , " Hello, World!" .Unidecode ());
19+ Assert .AreEqual (" '\"\r\n " , " '\"\r\n " .Unidecode ());
20+ Assert .AreEqual (" CZSczs" , " ČŽŠčžš" .Unidecode ());
21+ Assert .AreEqual (" a" , " ア" .Unidecode ());
22+ Assert .AreEqual (" a" , " α" .Unidecode ());
23+ Assert .AreEqual (" a" , " а" .Unidecode ());
24+ Assert .AreEqual (" chateau" , " ch\u00e2 teau" .Unidecode ());
25+ Assert .AreEqual (" vinedos" , " vi\u00f1 edos" .Unidecode ());
26+ ```
You can’t perform that action at this time.
0 commit comments