標題:
[發問]
如何取代字串中的"*"
[打印本頁]
作者:
mhl9mhl9
時間:
2017-5-15 00:53
標題:
如何取代字串中的"*"
如何取代字串中的"*",如"中國*人民"取代為"中國的人民"
作者:
GBKEE
時間:
2017-5-15 10:39
回復
1#
mhl9mhl9
~
*
Option Explicit
Sub Ex()
Dim F As Range
Set F = Cells.Find("*~**")
If Not F Is Nothing Then
Do
F = Replace(F, "*", "的")
Set F = Cells.FindNext(F)
Loop Until F Is Nothing
End If
End Sub
複製代碼
作者:
准提部林
時間:
2017-5-15 10:59
[a:a].Replace "~*", "的", Lookat:=xlPart
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)