using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string name = textBox1.Text;
if (textBox1.Text.Contains("l"))
{
textBox1.Text.Replace("l", "s");
}
string nameA = textBox1.Text;
MessageBox.Show(nameA);
}
}
}
基本的に、私がやりたいことは、ユーザーに名前を入力させ、名前の「l」文字を「s」に変更させることです。ボタンが押されたときにメッセージボックスに結果を表示します。ただし、何を試しても、「l」は変更されません。
編集:みんなありがとう、それがそんなにばかげたことだとは信じられない. うわーV_V