• 大小: 0.07M
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  汉字  拼音  

资源简介

C# 汉字转拼音比较全的类(支持大部分汉字) 源码下载

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Regularexpressions;

namespace Kt.framework.Common.Utils
{
    /// 
    /// 功能:      汉字转拼音静态类包括功能全拼和声母,方法全部是静态的不能区分多音字只完全支持GB2312-80汉字库
    /// 完成日期:  2009-04-17
    /// 作者:      adair
    /// 

    public static class ChineseToBopomofo
    {
        #region 获取汉字的首字母

        /// 
        /// 获取汉字的首字母
        /// 

        /// 汉字
        /// 汉字的首字母
        public static String IndexCode(String IndexTxt)
        {
            String temp = null;
            for (int i = 0; i < IndexTxt.Length; i++)
                temp = temp + GetOneIndex(IndexTxt.Substring(i 1));
        

评论

共有 条评论