专业编程基础技术教程

网站首页 > 基础教程 正文

使用C#编程批量替换某一类字符串源代码

ccvgpt 2024-12-02 15:42:05 基础教程 1 ℃

使用C#编程批量替换某一类字符串源代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string a = textBox1.Text;
            string b = textBox2.Text;
            string c = textBox3.Text;
            textBox1.Text = a.Replace(b, c);
        }
    }
}

替换某一类字符串可以使用字符串对象的Replace方法,可以将特定的一类字符串替换为目标内容。

结语:喜欢的朋友请关注和收藏!

使用C#编程批量替换某一类字符串源代码

Tags:

最近发表
标签列表