字符串扩展方法

字符串扩展方法

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Web;
 5 
 6 using System.Text;
 7 
 8 public static class StringExtend
 9 {
10     public static DateTime ToDatetime(this string str)
11     {
12         if (string.IsNullOrEmpty(str))
13             return DateTime.MinValue;
14         else
15             return Convert.ToDateTime(str);
16     }
17 
18     public static DateTime? ToNullableDatetime(this string str)
19     {
20         if (string.IsNullOrEmpty(str))
21             return null;
22         else
23             return Convert.ToDateTime(str);
24     }
25 
26     public static int ToInt32(this string str)
27     {
28         if (string.IsNullOrEmpty(str))
29             return int.MinValue;
30         else
31             return Convert.ToInt16(str);
32     }
33 
34     public static int? ToInt32(this string str)
35     {
36         if (string.IsNullOrEmpty(str))
37             return null;
38         else
39             return Convert.ToInt16(str);
40     }
41     public static string HtmlDecode(this string str)
42     {
43         StringBuilder sb = new StringBuilder(str);
44         sb.Replace("<br />", "\n");
45         sb.Replace("\r", "");
46         sb.Replace("&nbsp;&nbsp;", "\t");
47         sb.Replace("&nbsp;", " ");
48         sb.Replace("&#39;", "\'");
49         sb.Replace("&quot;", "\"");
50         sb.Replace("&gt;", ">");
51         sb.Replace("&lt;", "<");
52         sb.Replace("&amp;", "&");
53         return sb.ToString();
54     }
55 
56     public static string HtmlEncode(this string str)
57     {
58         StringBuilder sb = new StringBuilder(str);
59         sb.Replace("&", "&amp;");
60         sb.Replace("<", "&lt;");
61         sb.Replace(">", "&gt;");
62         sb.Replace("\"", "&quot;");
63         sb.Replace("\'", "&#39;");
64         sb.Replace(" ", "&nbsp;");
65         sb.Replace("\t", "&nbsp;&nbsp;");
66         sb.Replace("\r", "");
67         sb.Replace("\n", "<br />");
68         return sb.ToString();
69     }
70 }

转载于:https://www.cnblogs.com/guohu/archive/2012/09/25/2700940.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值