gpt4 book ai didi

excel - 在 Excel 中选择两个单词之间的宏

转载 作者:行者123 更新时间:2023-12-02 17:04:35 24 4
gpt4 key购买 nike

有人可以帮我吗 。我需要在我之前定义的 2 个单词之间进行选择并将其删除..

例如:

http:/ertwertw4r!%!+53445433333/cat.jpgThere is a dog

我需要选择从 http:.jpg 的文本并将其删除或替换为 ``。因为我只需要有一只狗部分

此操作成功于

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

问候

最佳答案

录制一个用“”替换“http:*.jpg”的宏,我得到:

 Selection.Replace What:="http:*.jpg", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False

“http:*.jpg”表示以“http:”开头并以“.jpg”结尾的任何内容。之前或之后的任何文本都保留在原处。

关于excel - 在 Excel 中选择两个单词之间的宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16420972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com