Open Dapscoptyltd opened 5 years ago
Okay. So I needed to try and replace "Gate 0"; "Gate 1"; "Gate 2" and so on with a hyphenated construction. I tried this: Search: ([Gate])( )([0-9]) Replace: \1-\3
My thinking was logical, but flawed.
"Gate0-"; "Gate1-"; "Gate2-" and so on.
It took me a while, but: Search: ([Gate])( 0) Replace: \1-
Find:^t Replace:|+
Find:[0-9].[0-9]|+ Replace:Empty
Find:[0-9][0-9].[0-9]|+ Replace:|+ Style Level: Award Heading 3
Find: (*)|+ Style Level: Level 4A Replace:|+ Style Level: Award Heading 4
Find: [1-9][0-9].^space^space Style Level: Award Heading 1 Replace:|+ Style Level: Award Heading 1
(([a-z])++) This term found this numbering format:
(a)++ without selecting something like (Sailors ...) other text.
(b)++.
Remember that with wild cards, caret character searches don't work - like the paragraph mark...
^=([ High]) finds -- High. Replace with :\1 places: : High.
To find 'FY YYYY--YY
To find "FY--YYYY" use: FY^=([0-9]{1,2})([0-9]{2}) Replace with "YYYY financial year" with: \1\2 financial year
There are a number of resources I've found: The Microsoft Word MVP FAQ Site The Microsoft Word MVP General information Site Pcworld Some from Rhonda Bracey More from Rhonda For help with leaving part of the wildcard experssion during replace TechRepublic info