c# 扩展方法奇思妙用基础篇二:string 常用扩展
2009-08-14 21:31 鹤冲天 阅读(28069) 评论(54) 编辑 收藏 举报string是c#里面最最常用的类,和它的使用频度比起来,它的操作确少的可怜,实例方法只有三十个左右,静态方法只有十多个,远远满足不了我们日常的需求。
本文使用扩展方法来增加string的功能,举出几个例子,也算是抛砖引玉吧!
首先我们把string类最常用的静态方法IsNullOrEmpty扩展成“实例”方法:
别小看这一步改进,扩展后可减少我们编写代码的时间,提高我们编码的速度。如你对此怀疑,将第4行和第5行的代码手工录入100次(不能复制粘贴)试试,就知道了!本文使用扩展方法来增加string的功能,举出几个例子,也算是抛砖引玉吧!
首先我们把string类最常用的静态方法IsNullOrEmpty扩展成“实例”方法:
public static bool IsNullOrEmpty(this string s)
{
return string.IsNullOrEmpty(s);
}
下面是调用代码:
{
return string.IsNullOrEmpty(s);
}
1 public static void Test1()
2 {
3 string s = "";
4 bool b1 = string.IsNullOrEmpty(s);
5 bool b2 = s.IsNullOrEmpty();
6 }
2 {
3 string s = "";
4 bool b1 = string.IsNullOrEmpty(s);
5 bool b2 = s.IsNullOrEmpty();
6 }
如果你需要,也可以扩展出“IsNotNullOrEmpty”。
再来看下FormatWith扩展
public static string FormatWith(this string format, params object[] args)
{
return string.Format(format, args);
}
public static void Test2()
{
string today = "今天是:{0:yyyy年MM月dd日 星期ddd}".FormatWith(DateTime.Today);
}
也很简单的,我们这里简单说一下效率问题,string.Format函数有多个重载:{
return string.Format(format, args);
}
public static void Test2()
{
string today = "今天是:{0:yyyy年MM月dd日 星期ddd}".FormatWith(DateTime.Today);
}
1 public static string Format(string format, params object[] args);
2 public static string Format(string format, object arg0);
3 public static string Format(string format, object arg0, object arg1);
4 public static string Format(string format, object arg0, object arg1, object arg2);
5 public static string Format(IFormatProvider provider, string format, params object[] args);
尽管第1行的Format功能强大到可以取代中间的三个,但它的效率不高。中间三个重载是出于性能的考虑。2 public static string Format(string format, object arg0);
3 public static string Format(string format, object arg0, object arg1);
4 public static string Format(string format, object arg0, object arg1, object arg2);
5 public static string Format(IFormatProvider provider, string format, params object[] args);
如果你比较看重效率的性能,仅仅使用一个FormatWith扩展是不行的,可以参照Format的重载,多扩展上几个!
.Net中处理字符串最强大的还是正则表达式,下面我们将其部分功能扩展至string上:
public static bool IsMatch(this string s, string pattern)
{
if (s == null) return false;
else return Regex.IsMatch(s, pattern);
}
public static string Match(this string s, string pattern)
{
if (s == null) return "";
return Regex.Match(s, pattern).Value;
}
public static void Test3()
{
bool b = "12345".IsMatch(@"\d+");
string s = "ldp615".Match("[a-zA-Z]+");
}
使用Regex要引用命名空间“System.Text.RegularExpressions”。{
if (s == null) return false;
else return Regex.IsMatch(s, pattern);
}
public static string Match(this string s, string pattern)
{
if (s == null) return "";
return Regex.Match(s, pattern).Value;
}
public static void Test3()
{
bool b = "12345".IsMatch(@"\d+");
string s = "ldp615".Match("[a-zA-Z]+");
}
扩展后,我们就可以直接使用扩展中的方法,而不必再引用这个命名空间了,也不用写出“Regex”了。
Regex的Replace方法也比较常用,也可以扩展到string上。
接下来是与int相关的操作:
public static bool IsInt(this string s)
{
int i;
return int.TryParse(s, out i);
}
public static int ToInt(this string s)
{
return int.Parse(s);
}
public static void Test4()
{
string s = "615";
int i = 0;
if (s.IsInt()) i = s.ToInt();
}
同样方法可完成转换到DateTime。{
int i;
return int.TryParse(s, out i);
}
public static int ToInt(this string s)
{
return int.Parse(s);
}
public static void Test4()
{
string s = "615";
int i = 0;
if (s.IsInt()) i = s.ToInt();
}
如果你用过CodeSmith,对下面这种应用应该比较熟悉:
public static string ToCamel(this string s)
{
if (s.IsNullOrEmpty()) return s;
return s[0].ToString().ToLower() + s.Substring(1);
}
public static string ToPascal(this string s)
{
if (s.IsNullOrEmpty()) return s;
return s[0].ToString().ToUpper() + s.Substring(1);
}
不用多解释,大家都能看明白的。{
if (s.IsNullOrEmpty()) return s;
return s[0].ToString().ToLower() + s.Substring(1);
}
public static string ToPascal(this string s)
{
if (s.IsNullOrEmpty()) return s;
return s[0].ToString().ToUpper() + s.Substring(1);
}
还可扩展出像sql中字符串处理的Left、Right,比较简单,很好实现的。
也可以实现英文名词的单重数形式转换,这个应用场景不大,实现相对麻烦。
对string的扩展远不只这些,根据你的实际需要,只要用起来方便,就可以扩展出来。
本文只是抛砖引玉,如果大家有实用比较好的对string的扩展,不要吝惜,写在回复中,和大家一起分享!
本人系列文章《c#扩展方法奇思妙用》,敬请关注!
-------------------
思想火花,照亮世界