有人可以在这个excel中帮助我吗?我需要在我之前定义的两个词之间进行选择并将其删除..
例如:
http://ertwertw4r!%!+53445433333/cat.jpg 有条狗
我需要从http:
直到选择文本.jpg
并将其删除或替换为``。因为我只需要有一个狗部分
这在word中是成功的
Sub Macro ()
Selection.Find.ClearFormatting
With Selection.Find
.Text = "http:"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
End With
Selection.Find.Execute
Selection.Extend
Selection.Find.ClearFormatting
With Selection.Find
.Text = ".jpg"
.Replacement.Text = ""
.Forward = True .Wrap = wdFindContinue
End With
Selection.Find.Execute
End Sub
问候