ドキュメントの特定のプロパティを自動的にチェックしたい:
- 括弧の前のスペース
- リストで指定されているイタチの言葉を探します
- 印刷できない文字 (多くの方程式を設定してから、タイプを変更しました - 良くありません)
理想的には、これらすべてをコメントでマークする単語が欲しいので、後で修正できます。
このテキストのテストは可能/実行可能/すでに単語に存在していますか?
残念ながら、必要な場合に非表示のドキュメント マークを強調表示することができないため、一度に実行することはできません。異なる目標のために、この 2 つのサブを試してください (サブ内のコメントも読んでください)。
Sub Searching_For_Text()
'will highlight all options added with .HitHighlight method
With ActiveDocument.Content.Find
.ClearHitHighlight
'words
.HitHighlight "Variant" 'any word this way
'any text
.HitHighlight " (" 'this for spaces before parenthesis
'partially specified text
.HitHighlight "doc" 'simply this for words like: _
document, documents
'option 2- this can't be highlighted but no error returned
.HitHighlight "^p" 'paragraph mark
.HitHighlight "^l" 'soft line mark
End With
End Sub
特別な文書マークの場合:
Sub Searching_Special_marks()
'for paragraph marks you need to search each separately
'each time you call it you will find next one, next to current selection point
With Selection.Find
'some cleaning
.ClearFormatting
'searching each separately
.Text = "^p" '^l for soft lines, _
^t for tabs, etc.
.Forward = True
.Execute
End With
End Sub
これらの可能な解決策でいくつかの実験を行う必要があると思います。