C#利用微软自带库进行中文繁体和简体之间的转换的代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#利用微软自带库进行中文繁体和简体之间的转换的代码相关的知识,希望对你有一定的参考价值。

做工程之余,将做工程过程比较重要的代码备份一次,如下资料是关于C#利用微软自带库进行中文繁体和简体之间的转换的代码,应该是对码农有所帮助。

 protected void Button1_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(txt_value.Text))
     {
         return;
     }
     else
     {
         string value = txt_value.Text.Trim();
         string newValue = StringConvert(value, "1");
         if (!string.IsNullOrEmpty(newValue))
         {
             TextArea1.Value = newValue;
         }
     }
 }
 protected void Button2_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(txt_value.Text))
     {
         return;
     }
     else
     {
         string value = txt_value.Text.Trim();
         string newValue = StringConvert(value, "2");
         if (!string.IsNullOrEmpty(newValue))
         {
             TextArea1.Value = newValue;
         }
     }
 }

 #region IString 成员

 public string StringConvert(string x, string type)
 {
     String value = String.Empty;
     switch (type)
     {
             value =  Microsoft.VisualBasic.Strings.StrConv(x, Microsoft.VisualBasic.VbStrConv.TraditionalChinese,0);
             break;
         case "2":
             value = Microsoft.VisualBasic.Strings.StrConv(x, Microsoft.VisualBasic.VbStrConv.SimplifiedChinese, 0);
             break;
         default:
             break;
     }
     return value;
 }

 #endregion

以上是关于C#利用微软自带库进行中文繁体和简体之间的转换的代码的主要内容,如果未能解决你的问题,请参考以下文章

python实现中文字符繁体和简体中文转换-乾颐堂

python实现简体中文和繁体相互转换

[内码]您是如何实现简体中文到繁体中文快速转换的? - PHP进阶讨论

SnowNLP:?中文分词?词性标准?提取文本摘要,?提取文本关键词,?转换成拼音?繁体转简体的 处理中文文本的Python3 类库

windows使用opencc中文简体和繁体互转

windows使用opencc中文简体和繁体互转