2011年8月12日

C#的第一个例子(将html的大写标签转换为小写)

摘要: 看了好久的书,总算是可以实现些自己需要的功能.一直以来.想把自己用的wiz中的html大小标签转换成小写,这样子才更合乎w3c.今天终于实现了一小点...过程如下:1.先写了个cmd的程序View Code 1 using System; 2 using System.Text.RegularExpressions; 3 namespace LowCaseOrUpCaseTransform 4 { 5 class Program 6 { 7 8 static string CapText(Match m) 9 {10 // Get the matched string.11 string x 阅读全文

posted @ 2011-08-12 21:55 HelyCheng 阅读(386) 评论(0) 推荐(0)

导航