c#如何实现替换和转到功能
//现用c#开发记事本程序,不知如何实习替换和转到功能,只能上来学习~publictihuan(){InitializeComponent();}privatestrin...
//现用c#开发记事本程序,不知如何实习替换和转到功能,只能上来学习~
public tihuan()
{
InitializeComponent();
}
private string keyword = string.Empty;//要查找的关键字
int pos = 0;//关键字位置
string text = string.Empty;//主窗体字符串变量
bool isCase = false;//是否区分大小写
//取消按钮
private void button4_Click(object sender, EventArgs e)
{
Close();
}
//替换按钮
private void button2_Click(object sender, EventArgs e)
{
//关键字为空直接返回
if (textBox1.Text == string.Empty)
{ return; }
else
{
//要查找的关键字
keyword = textBox1.Text;
//区分大小写时
if (isCase)
{
pos = text.IndexOf(keyword, pos);//这里卡住了,不知咋写
text.Replace(keyword); }
//不区分大小写
else
{
}
}
} 展开
public tihuan()
{
InitializeComponent();
}
private string keyword = string.Empty;//要查找的关键字
int pos = 0;//关键字位置
string text = string.Empty;//主窗体字符串变量
bool isCase = false;//是否区分大小写
//取消按钮
private void button4_Click(object sender, EventArgs e)
{
Close();
}
//替换按钮
private void button2_Click(object sender, EventArgs e)
{
//关键字为空直接返回
if (textBox1.Text == string.Empty)
{ return; }
else
{
//要查找的关键字
keyword = textBox1.Text;
//区分大小写时
if (isCase)
{
pos = text.IndexOf(keyword, pos);//这里卡住了,不知咋写
text.Replace(keyword); }
//不区分大小写
else
{
}
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询