2014年2月7日

c# 打开浏览器

摘要: using Microsoft.Win32; System.Diagnostics.Process.Start("explorer.exe", Url); 阅读全文

posted @ 2014-02-07 10:51 iackjee 阅读(190) 评论(0) 推荐(0) 编辑

C#中文转换成拼音英文

摘要: #region 0.1 中文转到英文 + static string GetPinYing(string characters) /// /// 中文转到英文 /// /// /// public static string GetPinYing(string characters) { if (characters.Length != 0) { StringBuilder fullSpellBuild = new ... 阅读全文

posted @ 2014-02-07 01:25 iackjee 阅读(1554) 评论(0) 推荐(0) 编辑

[转载]C# 中对html 标签过滤

摘要: private string FilterHTML(string html) { System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"标记 html = regex2.Replace(html, ""); //过滤href=javascript: () 属性 html = regex3.Replace(html, " _disibledevent=")... 阅读全文

posted @ 2014-02-07 00:46 iackjee 阅读(318) 评论(0) 推荐(0) 编辑

[转载]C# 判断字符是否中文还是英文

摘要: private static bool IsHanZi(string ch) { byte[] byte_len = System.Text.Encoding.Default.GetBytes(ch); if (byte_len.Length == 2) { return true; } return false; } 阅读全文

posted @ 2014-02-07 00:41 iackjee 阅读(1204) 评论(0) 推荐(0) 编辑

导航