C # simple example code for converting Chinese characters into pinyin

Source: Internet
Author: User

First, introduce a library of ChnCharInfo. dll 3rd.

Code:

Btn_chinChar_Click event:

Copy codeThe Code is as follows: private void btn_chinChar_Click (object sender, EventArgs e)
{
ChineseChar cr = null;
String str = "", txtString = txt_string.Text.Trim ();
If (! String. IsNullOrEmpty (txtString ))
{
Foreach (var item in cr. GetChineseSpellings (txtString ))
{
Str + = item + "-";
}
}
MessageBox. Show (str );
}

Extension Method:

Copy codeThe Code is as follows: public static class ChineseCharacters
{
Public static ICollection <string> GetChineseSpellings (this ChineseChar chinChar, string value)
{
List <string> list;
Int I, start;
Char c;

If (string. IsNullOrEmpty (value) return null;

Start = 0;
List = new List <string> ();

For (I = 0; I <value. Length; ++ I)
{
C = value [I];
If (ChineseChar. IsValidChar (c ))
{
If (I> start)
{
List. Add (value. Substring (start, I-start ));
}
ChinChar = new ChineseChar (c );
List. Add (chinChar. Pinyins. First (). Substring (0, chinChar. Pinyins. First (). Length-1). ToLower ());
Start = I + 1;
}
}

If (I> start)
{
List. Add (value. Substring (start, I-start ));
}
Return list;
}
}

Result:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.