VB代码(将字符串中的字符s替换为字符t)

2025-04-02 03:18:41
推荐回答(1个)
回答1:

Private Sub Command1_Click()
Text1.Text = Replace(Text1.Text, "s", "t")
End Sub