在VBA中,替換指定內容可以通過使用Replace函數來實現。Replace函數接受四個參數,分別是要操作的字符串、要查找的子字符串、替換的子字符串和可選的比較方式。以下是一個示例代碼:
Sub ReplaceText()
Dim originalText As String
originalText = "Hello, World!"
' 替換字符串中的指定內容
originalText = Replace(originalText, "World", "Universe")
MsgBox originalText
End Sub
在上面的示例中,我們首先定義了一個字符串變量originalText
,然后使用Replace函數將其中的"World"替換為"Universe",最后顯示替換后的字符串。你可以根據實際需求調整要替換的內容和替換后的內容。