Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Insert a Page Break in a Text File After Each Line Where the Only Character is the Number 1Content of Insert a Page Break in a Text File After Each Line Where the Only Character is the Number 1.vbsMD5 Hash: 7993CC170DBDCBA46651DB6C3888DF2C |
||
Const wdReplaceAll = 2
Set objWord = CreateObject("Word.Application") objWord.Visible = True Set objDoc = objWord.Documents.Open("C:\Scripts\Test.txt") Set objSelection = objWord.Selection objSelection.Find.Text = "^p1^p" objSelection.Find.Forward = TRUE objSelection.Find.Replacement.Text = "^p1^p^m" objSelection.Find.Execute ,,,,,,,,,,wdReplaceAll | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |