C#语法小用法

时间:2022-12-02 16:52:06

数据在存为数据库之前,用JS的encodeURIComponent进行编码,现需要在后台代码中进行解码,实现decodeURIComponent的功能,

如下:

HttpUtility.UrlDecode(dr[j].ToString());

用C#实现去掉文字中的html标签,用正则表达式实现:

value = System.Text.RegularExpressions.Regex.Replace(value, @"<[^>]*>", "");