欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Asp.net中汉字转换成为拼音

程序员文章站 2022-12-28 19:50:58
1.应用场景 将汉字转换为拼音(eg:"我爱你"——— "WOAINI") 取各个汉字的首字母(eg:"我是中国人"——— "WSZGR") 2.涉及到的组件 组件1:ToolGood.Words【我实际的就是这种】 1. 组件名称:ToolGood.Words 2. "nuget地址" : 3. ......

1.应用场景

  • 将汉字转换为拼音(eg:"我爱你"———>"woaini")
  • 取各个汉字的首字母(eg:"我是中国人"———>"wszgr")

2.涉及到的组件

  • 组件1:toolgood.words【我实际的就是这种】
  1. 组件名称:toolgood.words
  2. nuget地址
  3. github地址【提示:500多个star】

3.关键代码

using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
using toolgood.words;

namespace pinyinxiangguan
{
    class program
    {
        static void main(string[] args)
        {
            while (true)
            {

                var name = console.readline();
                if (string.isnullorempty(name))
                {
                    break;
                }
                //获取汉字的首字母
                console.writeline(wordshelper.getfirstpinyin(name));
            }

        }
    }
}

4.关键代码截图

Asp.net中汉字转换成为拼音

5.如果有其他好的组件推荐,欢迎各位大佬补充

Asp.net中汉字转换成为拼音