📜  文本框查找和替换 vb - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:55.605000             🧑  作者: Mango

代码示例1
If TextBox1.Text.Contains("a") Then
        TextBox1.Text = TextBox1.Text.Replace("a", "c")
    End If