我想使用宏在单元格中的现有字符串中添加特定字符串。
例如:
将123456789
重命名为1234XXX56789
通过添加XXX
和宏。
答案 0 :(得分:2)
有效使用Left
,Mid
,Right
功能可以满足您的要求。
Sub StringReplace()
Name = InputBox("Enter the Original String")
Strng = InputBox("Enter the String to Replace")
Var = InputBox("Enter the character position of string replacement begins ")
Name = Left(Name, Var) & Strng & Mid(Name, Var + 1)
MsgBox Name
End Sub