1/**/
2 /// <
summary
>
3///將字串格式化為html
4 ///
summary
>
5 /// <
param
name
="normalstr"
>所要格式化的字串
param
>
6 /// <
param
name
="identiftyurl"
>是否自動識別url,識別出來的url將會自動加上超級鏈結標籤
param
>
7 /// <
returns
>返回格式化後的html**
#region 過濾掉 html**
47private static string striphtml(string strhtml)
48)|\s)*?(\/\s*)?
>
", 53
@"([\r\n])[\s]+",
54@"&(quot|#34);",
55@"&(amp|#38);",
56@"&(lt|#60);",
57@"&(gt|#62);",
58@"&(nbsp|#160);",
59@"&(iexcl|#161);",
60@"&(cent|#162);",
61@"&(pound|#163);",
62@"&(copy|#169);",
63@"(\d+);",
64@"-->",
65 @"
.*\n"
66};
6768
string aryrep = ;
85#endregion
86string newreg = aryreg[0];
87string stroutput = strhtml;
88for (int i = 0; i < aryreg.length; i++)
8993
stroutput.replace("<", "");
94stroutput.replace(">", "");
95stroutput.replace("\r\n", "");
96return stroutput;97}
98#endregion
字串之間的轉換
函式 encode 作用 將字串內容轉化為16進製制資料編碼,其逆過程是decode 引數說明 strencode 需要轉化的原始字串 轉換的過程是直接把字元轉換成unicode字元,比如數字 3 0033,漢字 我 u 6211 函式decode的過程是encode的逆過程.public stat...
字串,數字之間的轉換
數字 字串 cstring ntos double d else if sign 1 str.insert 0,return str 字串 數字 double ston cstring str 10進製 2進製 void ccalculation dec2bin cstring strexp int...
字串整數之間的轉換
在數字和字元之間轉換 一 整數轉字元 1.在後面加 0 即可,如 1 0 這樣做可行是因為字元0到字元9在ascii編碼時是連續的,字元0的ascii值是48,字元1的ascii值是49,其他數字字元依次往後排,而ascii值實際上就是char型整數,所以可以用兩個字元相加得到結果。2.強制轉換型別...