編輯:使用按鈕替換字符串vba
我更關注PHP,我剛開始學習VBA。 這是我爲按鈕製作的代碼。
Private Sub btnConvert_Click()
Dim a As String
Dim b As String
Dim c As String
Dim d As String
Dim e As String
Dim f As String
a = "a"
b = "b"
c = "c"
d = "d"
e = "e"
f = "f"
Columns("B").Replace what:=a, replacement:=b, lookat:=xlPart, MatchCase:=False
Columns("B").Replace what:=c, replacement:=d, lookat:=xlPart, MatchCase:=False
Columns("B").Replace what:=e, replacement:=f, lookat:=xlPart, MatchCase:=False
End Sub
現在,我的問題是:在 代碼就像上面,它發生的「B」將與「一」來代替。 但現在我也想刪除一部分字符串。
例如字符串是:
a(hey)/(qworty);
c(yow)/(asdf);
e(wow)/(zxcv_786);
當我點擊按鈕上的文本應該被替換爲:
b(hey);
c(yow);
e(wow);
希望你明白。 謝謝。
'列( 「B」)更換什麼:= 「/(qworty)」,替換:= 「」,LOOKAT:= xlPart,MatchCase:= FALSE' –
我改變這些實施例。抱歉。 – akamariaclaraaa