A family of Microsoft word processing software products for creating web, email, and print documents.
I have no VBA expertise in Word or Excel, but if a series of paragraphs or rows, one word in each, would do what you want, then you can use a simple Find operation:
- Press Ctrl+F to open the Find dialog.
- Check the box for "Highlight all items found in" and select "Main Document."
- Click More to expand the dialog.
- Check the box for "Use wildcards."
- Paste this search string into the "Find what" box: §[A-Za-z]{1,}>
- Click Find All. All the words will be selected.
- Click on the title bar of the document to return focus to it without deselecting the found words.
- Press Ctrl+C to copy the selected words.
- Press Ctrl+V to paste the words into a new blank document (one per paragraph) or into Excel (one per row).
Note: If the terms to be found contain numbers, the search string should be §[A-Za-z0-9]{1,}>