如何找到带链接的数字

时间:2017-11-14 02:20:26

标签: vba ms-word word-vba

如下图所示,我" crtl + H"想要找到"表2",但无法找到这个词,因为" 2"有一个链接。

enter image description here

II尝试使用vba代码

selection.find.clearformatting 
with selection.find .text="Table 2" 
   .wrap = wdfindcontinue 
   .forward = true 
   .font.bold = true
   .replacement.text = "ss"
   .execute replace:=wdreplaceAll
   end with 

但无法找到这个"表2"。

enter image description here

1 个答案:

答案 0 :(得分:0)

我得到了其他人的答案,这个数字是“字段”,可能是因为字段括号一般不是从键盘花括号输入的,只是为了表示域范围标志的开始和结束,所以搜索功能无法找到它。