public string ReplaceTest(int i)
{
string rep = this.textBox3.Text;
string reped = rep.Replace("sir, this.textBox3.Text");
}
喜欢这个?这是我想要做的但是出现了另一个错误并非所有代码路径都返回值
答案 0 :(得分:3)
string.Replace()
有两个参数:
如果您要删除 "sir"
,则表示将其替换为空字符串:
string reped = rep.Replace("sir", string.Empty);