Asp.net中汉字转换成为拼音
程序员文章站
2022-05-13 23:50:24
1.应用场景 将汉字转换为拼音(eg:"我爱你"——— "WOAINI") 取各个汉字的首字母(eg:"我是中国人"——— "WSZGR") 2.涉及到的组件 组件1:ToolGood.Words【我实际的就是这种】 1. 组件名称:ToolGood.Words 2. "nuget地址" : 3. ......
1.应用场景
- 将汉字转换为拼音(eg:"我爱你"———>"woaini")
- 取各个汉字的首字母(eg:"我是中国人"———>"wszgr")
2.涉及到的组件
- 组件1:toolgood.words【我实际的就是这种】
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)); } } } }