![]() |
#7
|
||||
|
||||
![]()
The two macros work on different principles so it is more efficient to do this in different ways for the two macros. Adding the brackets is quite slow because it steps through every paragraph in the document and you wouldn't want to do that 3 times. Removing them is much faster as the search is a more efficient way of finding a style so it can afford to repeat the process three times.
Code:
Sub DamnBrackets() Dim aPar As Paragraph, aRng As Range, sty As String For Each aPar In ActiveDocument.Paragraphs sty = aPar.Style If sty = "Normal" Or sty = "AbNormal" Or sty = "Heading 1" Then Set aRng = aPar.Range Do While Left(aRng.Text, 1) = " " aRng.MoveStart Unit:=wdCharacter, Count:=1 Loop Do While Right(aRng.Text, 1) = vbCr Or Right(aRng.Text, 1) = " " aRng.MoveEnd Unit:=wdCharacter, Count:=-1 Loop If Len(aRng.Text) > 0 Then aRng.InsertAfter ")" aRng.InsertBefore "(" End If End If Next aPar End Sub Sub RemoveBrackets() Dim arrSty() As String, i As Integer arrSty = Split("Normal|AbNormal|Heading 1", "|") For i = LBound(arrSty) To UBound(arrSty) With Selection.Find .ClearFormatting .Style = ActiveDocument.Styles(arrSty(i)) .Text = "[\(\)]{1}" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue .MatchWildcards = True .Format = True .Execute Replace:=wdReplaceAll End With Next i End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
wrdy | Word | 2 | 08-03-2017 06:55 PM |
![]() |
C_Hawk1996 | Word | 1 | 04-13-2016 05:35 AM |
![]() |
OfficeBoy95 | Word | 2 | 05-12-2014 06:31 PM |
How do I add a custom style to tab button? | kennethc | Word | 1 | 04-11-2014 05:25 PM |
How to set style automatically for specific texts | ragesz | Word | 2 | 07-25-2013 07:08 AM |