关于C#函数的问题
我想实现,当点击Button1的时候,我能把标题从字符串里都找出来.我是新手,谁来帮我一下啊,谢谢了!!!
public static String GetSearchText(String content, String findTxt)
{
String[] arrTxt = content.Split(",".ToCharArray());
String[] arrfindTxt = findTxt.Split(",".ToCharArray());
for (int j = 0; j < arrTxt.Length; j++)
{
for (int k = 0; k < arrTxt.Length; k++)
{
if (arrTxt[j].IndexOf(arrfindTxt[k]) > 0)
arrTxt[j] = arrTxt[j].Replace(arrfindTxt[k], "<b>" + arrfindTxt[k] + "</b>");
}
}
return "a";
arrTxt[j] = arrTxt[j].Replace(arrTxt[j - 1], arrTxt[j - 1] + arrTxt[j] + arrTxt[j + 1]);
if(arrTxt[j].)
}
protected void Button1_Click(object sender, EventArgs e)
{
Response.Write(GetSearchText("请输入标题及时间,标题的,不是标题,我们的标题", "标题"));
}