powershell -Command "Get-Content document.docx -Raw | Select-String -Pattern '《.*?》' -AllMatches | Foreach {$_.Matches} | Foreach {$_.Value} | Out-File 1.txt"
其中,document.docx是要處理的Word文檔的文件名,您可以根據實際情況進行修改。執行此命令後,PowerShell將讀取文檔內容,並使用正則表達式匹配所有包含書名號的內容,並將結果保存在1.txt文件中。