asp.Net中 Replace函数的用法
2017-11-28 0:00:00
asp.Net中 Replace函数的用法
using System.Text.RegularExpressions;
string text="select it";
string newStr=Regex.Replace(text, "select", "");
asp.Net中 Replace函数的用法
using System.Text.RegularExpressions;
string text="select it";
string newStr=Regex.Replace(text, "select", "");