Dim strWord As String With Selection.Find .Text = "?" .MatchWildcards = True End With Do While Selection <> "`" Selection.Find.Execute If Selection.Font.Bold = True Then strWord = strWord & Selection Else If Len(Trim(strWord)) <> 0 Then MsgBox strWord End If strWord = "" End If Loop 问题:我现在在文件内写用"`"这个字符注明文档结束,可不可以不标?