在asp.net中經常會從網面中取資料或更新網頁的顯示。因為html中有些特殊字元如<, >, &等,顯示實際值不一致,造成儲存到資料庫再取出來時會不一樣。因此需要以下函式做轉換:
//////替換html中的特殊字元
//////需要進行替換的文字。
///替換完的文字。
public static string htmlencode(string thestring)
//////恢復html中的特殊字元
//////需要恢復的文字。
///恢復好的文字。
public static string htmldiscode(string thestring)
c語言標準庫中字元轉換函式和數字轉換函式
這篇文章主要介紹了c標準庫中字元轉換函式和數字轉換函式,需要的朋友可以參考下 字元轉換為數字 include atoi 將字元轉換為整型 例 char ch1 int i atoi ch1 atol 將字元轉化為長整型 例 char ch2 long l atol ch2 atof 將字元轉化為浮點...
c語言標準庫中字元轉換函式和數字轉換函式
字元轉換為數字 include atoi 將字元轉換為整型 例 char ch1 int i atoi ch1 atol 將字元轉化為長整型 例 char ch2 long l atol ch2 atof 將字元轉化為浮點型 例 char ch3 float f atof ch3 strtod 將字...
HTML特殊字元轉換
public static string htmlencode string thestring public static string htmldiscode string thestring 用正規表示式過濾html標記的 public static string dealhtml strin...