标签:arp tostring substring public title 项目 lis ring class
项目之前使用的.net framework,可以通过引用 Microsoft.International.Converters.PinYinConverter 类库。来实现汉字转拼音。
现在项目移植到.net core,之前的类库已不能使用。
使用PinYinConverterCore包来实现汉字转拼音。
Install-Package PinYinConverterCore
dotnet add package PinYinConverterCore
using Microsoft.International.Converters.PinYinConverter;
namespace test
{
class Program
{
static void Main(string[] args)
{
string str = "我AI你中国!123";
string result = string.Empty;
foreach (char item in str)
{
try
{
ChineseChar cc = new ChineseChar(item);
if (cc.Pinyins.Count > 0 && cc.Pinyins[0].Length > 0)
{
string temp = cc.Pinyins[0].ToString();
result += temp.Substring(0, temp.Length - 1);
}
}
catch (Exception)
{
result += item.ToString();
}
}
Console.WriteLine(result);//"WOAINIZHONGGUO!123"
}
}
}
using Microsoft.International.Converters.PinYinConverter;
using System.Linq;
namespace test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine( GetFirstChar("我爱你"));// "W"
Console.WriteLine(GetFirstChar("WO爱你"));// "W"
Console.WriteLine(GetFirstChar("#我爱你"));// "#"
}
public static char GetFirstChar(string name)
{
var c = name.First();
if (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z'))
{
return c;
}
else
{
try
{
ChineseChar cc = new ChineseChar(c);
if (cc.Pinyins.Count > 0 && cc.Pinyins[0].Length > 0)
{
return cc.Pinyins[0][0];
}
}
catch (Exception ex)
{
return c;
}
return c;
}
}
}
}
.net core 通过PinYinConverterCore实现汉字转拼音,获取中文字符串首字母
标签:arp tostring substring public title 项目 lis ring class
原文地址:https://www.cnblogs.com/willingtolove/p/12150756.html