C#中如何擷取漢字的筆畫數和漢字的拼音

來源:互聯網
上載者:User

標籤:att   else   png   get   http   htm   library   character   target   

以前玩過一個遊戲,輸入兩個人的名字然後點擊緣分就能產生一段緣分測試的結果,後來經過分析知道是根據名字筆畫數之差來弄的小遊戲,於是就在百度上找怎麼得到漢字的筆畫數,也沒找到自己想要的答案,問遍了所有的人也不知道怎麼弄的,終於功夫不負有心人找到答案了,現在分享給大家!

第一步:添加DLL檔案的引用

DLL:點此下載

第二步

using System;using System.Collections.Generic;using System.Text;using Microsoft.International.Converters.PinYinConverter;namespace Example_CS{    class Program    {        static void Main(string[] args)        {            ChineseChar chineseChar = new ChineseChar(‘微‘);            Console.WriteLine("Stroke number of 微 in Chinese is {0}.", chineseChar.StrokeNumber);            Console.WriteLine("{0} characters‘ pinyin is \"wei1\".", ChineseChar.GetHomophoneCount("wei1"));            if(ChineseChar.IsHomophone(‘微‘, ‘薇‘))            {                Console.WriteLine("微 and 薇 have the same pinyin.");            }            else            {                Console.WriteLine("微 and 薇 have different pinyins.");            }        }    }}

其中上面的屬性和方法中:StrokeNumber屬性用來擷取字元的筆畫數;

Pinyins方法

擷取這個字元的拼音。

C#中如何擷取漢字的筆畫數和漢字的拼音

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.