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>");
}
posted @ 2011-03-15 11:36  许明吉博客  阅读(20933)  评论(0编辑  收藏  举报