码迷,mamicode.com
首页 > Windows程序 > 详细

C# 文件简繁体转换

时间:2014-12-26 06:08:58      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:

C#   文件简繁体转换

简繁体转换:

 

 

 

 

 

 

技术分享
 1  class Program
 2     {
 3         static void Main(string[] args)
 4         {
 5             string strFilePath = @"E:\Demo\Simplifiled_Demo\files\test.txt";
 6 
 7             if (File.Exists(strFilePath))
 8             {
 9 
10                 string strContent = File.ReadAllText(strFilePath, Encoding.UTF8);
11 
12                 foreach (var item in strContent)
13                 {
14                     if (item.Equals())
15                     {
16                         //简体转繁体;
17                         var ss = "";
18                         strContent = Regex.Replace(strContent, item.ToString(), ss);
19                         return;
20                     }
21                 }
22                 File.WriteAllText(strFilePath, strContent);
23                 
24                 Console.WriteLine("OK");
25                 Console.ReadKey();
26 
27             }
28         }
29     }
View Code

 

C# 文件简繁体转换

标签:

原文地址:http://www.cnblogs.com/zlp520/p/4185940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!