C# 查找替换字符串

   
     
protected void Page_Load( object sender, EventArgs e)
{
string s1 = " 今天天气很晴朗很晴朗 " ; // 原始字符串
string split = " 晴朗 " ; // 要合并的

int i = s1.IndexOf(split); // 获取第一索引个要合并字符串的
s1 = s1.Replace(split, "" ); // 替换为空
s1 = s1.Insert(i, split); // 在一个处插入合并字符串

Page.RegisterStartupScript(
"" , " <script>alert(' " + s1 + " ');</script> " );
}

你可能感兴趣的:(字符串)