MS Wordでは、パターン($$$newpage
)をページ分割で文字列置換する必要があります。これは標準のページ検索で可能ですか?それともプログラムで行う必要がありますか?
質問する
16662 次
2 に答える
11
go to "find and replace" and enter your "find" character and replace it with ^m
You can read more about it here
于 2012-08-30T15:38:33.507 に答える
1
同じ問題がありましたが、セクション区切り「^ b」をページ区切り「^ m」に置き換える必要があります。検索と置換が機能しません。このVBAスクリプトを使用して解決しました:
Sub ReplaceSectionBreaks()
'reliably replace section breaks with page breaks
'even if they're followed by tables
Dim rg As Range
Set rg = ActiveDocument.Range
With rg.Find
.Text = "^b"
.Wrap = wdFindStop
While .Execute
rg.Delete
rg.InsertBreak Type:=wdPageBreak
rg.Collapse wdCollapseEnd
Wend
End With
End Sub
パターン「$$$newpage」で「^b」を変更してみてください。これもうまくいくはずです。
于 2015-10-08T13:33:59.713 に答える