Find all words in microsoft word

Looking for text in your document? The Find pane helps you find characters, words, and phrases. If you want, you can also replace it with different text.

If you’re in Reading View, switch to Editing View by clicking Edit Document > Edit in Word Web App.

To open the Find pane from the Edit View, press Ctrl+F, or click Home > Find.

Find button in edit view

Find text by typing it in the Search the document for… box. Word Web App starts searching as soon as you start typing. To further narrow the search results, click the magnifying glass and select one or both of the search options.

Find and replace options, expanded

Tip:  If you don’t see the magnifying glass, click the X at the end of the Search the document for… box. The magnifying glass reappears.

When you type in your document or make a change, Word Web App pauses the search and clears the Find pane. To see the results again, click the Next Search Result or Previous Search Result arrow.

previous search rsult and next search result buttons

When you’re done searching, click the X at the end of the Search the document for… box.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Use the word processor’s search function to locate text and more

Updated on December 15, 2020

What to Know

  • Basic word search: Go to the Home tab. Select Find and enter the text for the search.
  • Advanced search: Go to Home > Find. Choose the search drop-down arrow. Select Options and select your criteria.

This article explains how to search for text in Microsoft Word. The information applies to Word 2019, Word 2016, Word 2013, Word 2010, Word Online, and Word for Microsoft 365.

How to Do a Basic Word Search in MS Word

Microsoft Word includes a search function that makes it easy to search for different elements in a document, including text. Use the basic tool to look for instances of a specific word, or the advanced options to perform tasks such as replace all instances of a word with another one or search for equations.

To run a basic search for a specific word or phrase in Word:

  1. Go to the Home tab and select Find, or press Ctrl+F.

    In older versions of Microsoft Word, select File > File Search.

  2. In the Navigation pane, enter the text you want to search for. A list of matching words displays in the Navigation pane and instances of the word are highlighted in the main document.

  3. Cycle through the results in the Navigation pane in one of three ways:

    • Press Enter to move to the next result.
    • Select a result with the mouse.
    • Select the Up and Down arrows to move to the previous or next result.
  4. Make any changes or edits to the document as needed.

  5. Select the Down arrow to move to the next instance of the word.

Match Case, Whole Words Only, and More

Beyond searching for every instance of a word, you can get more specific about what you want to find. For example, to find whole instances of a word and not every word that contains the letter combination or to find instances of a word that aren’t capitalized.

Here’s how to do an advanced search:

  1. Select Home > Find.

  2. In the Navigation pane, select the Search drop-down arrow.

  3. Choose Options.

  4. In the Find Options dialog box, choose the description that best fits what you’re trying to find. For example, to find instances of a word with the same capitalization, select Match case.

  5. Select OK.

Use Advanced Find

Many of the choices available in the Find Options dialog box are also available in Advanced Find. Advanced Find includes the option to replace the text with something new. Based on your selection, Word replaces one instance or all instances at once. You can also replace the formatting, or change the language, paragraph, and tab settings.

Find Instances of Other Elements

Other options in the Navigation pane include searching for equations, tables, graphics, footnotes, endnotes, and comments.

Thanks for letting us know!

Get the Latest Tech News Delivered Every Day

Subscribe

I’m not asking for «select All» texts in MS Word! neither using «CTRL» to select! or Even «Find». Ok?
My Question is : How Can I select all the words having e.g. «Home»
e.g.

I’m Going Home. I’m Coming Home. I love My Home.

I want to select all these «Home» and change their colors to RED (e.g.).

In My Case, The word I’ve been working on is repeated 1000 times. I can’t select them one by one!

If this is not Possible, Is there a word processor can solve my problem?

I Need Your Help! Thanks A lot

asked Nov 21, 2016 at 17:19

AndroidDev's user avatar

enter image description here

You can use find and replace all for that. Click the More > > button, which will then turn into less, and you can click on format which will allow you to adjust the font and its color then hit replace all.

enter image description here

answered Nov 21, 2016 at 17:23

Neo's user avatar

NeoNeo

3,2897 gold badges35 silver badges44 bronze badges

2

You want «Find and Replace»: CTRL-H.

https://support.office.com/en-us/article/Find-and-replace-text-and-other-data-in-a-Word-document-c6728c16-469e-43cd-afe4-7708c6c779b7

«To search for text with specific formatting, type the text in the Find what box. To find formatting only, leave the box blank.

Click Format, and then select the formats that you want to find and replace. For example, to find highlighted text, click Format > Highlight; to find bold text, click Format > Font, and then in the Find Font dialog box, select Bold in the Font style list.
Click the Replace with box, click Format, and then select the replacement formats.

NOTE: If you also want to replace the text, type the replacement text in the Replace with box.
To find and replace each instance of the specified formatting, click Find Next, and then click Replace. To replace all instances of the specified formatting, click Replace All.»

answered Nov 21, 2016 at 17:23

meatspace's user avatar

meatspacemeatspace

85916 silver badges25 bronze badges

1

  • Remove From My Forums
  • Question

  • Hi everyone.

    i want to get all words in a Word Document and List all by ascending order then check the words finally replace wrong word with correct word…

    can everyone help me… solutions…suggestions…?

    • Moved by

      Sunday, January 23, 2011 6:21 AM
      Word, not VSTO-specific (From:Visual Studio Tools for Office)

Answers

  • Use:

    Sub WordFrequency()
             Dim SingleWord As String           ‘Raw word pulled from doc
            Const maxwords = 9000              ‘Maximum unique words allowed
            Dim Words(maxwords) As String      ‘Array to hold unique words
            Dim Freq(maxwords) As Integer      ‘Frequency counter for Unique Words
            Dim WordNum As Integer             ‘Number of unique words
            Dim ByFreq As Boolean              ‘Flag for sorting order
            Dim ttlwds As Long                 ‘Total words in the document
            Dim Excludes As String             ‘Words to be excluded
            Dim Found As Boolean               ‘Temporary flag
            Dim j, k, l, Temp As Integer       ‘Temporary variables
            Dim tword As String                ‘
             ‘ Set up excluded words
    ‘         Excludes = «[the][a][of][is][to][for][this][that][by][be][and][are]»
            Excludes = «»
            Excludes = InputBox$(«Enter words that you wish to exclude, surrounding each word with [ ].», «Excluded Words», «»)
    ‘        Excludes = Excludes & InputBox$(«The following words are excluded: » & Excludes & «. Enter words that you wish to exclude, surrounding each word with [ ].», «Excluded Words», «»)
    ‘ Find out how to sort
    ByFreq = True
    Ans = InputBox$(«Sort by WORD or by FREQ?», «Sort order», «FREQ»)
    If Ans = «» Then End
    If UCase(Ans) = «WORD» Then
       ByFreq = False
    End If
    Selection.HomeKey Unit:=wdStory
    System.Cursor = wdCursorWait
    WordNum = 0
    ttlwds = ActiveDocument.Words.Count
    Totalwords = ActiveDocument.BuiltInDocumentProperties(wdPropertyWords)
            ‘ Control the repeat
            For Each aword In ActiveDocument.Words
                SingleWord = Trim(aword)
                If SingleWord < «A» Or SingleWord > «z» Then SingleWord = «» ‘Out of range?
                If InStr(Excludes, «[» & SingleWord & «]») Then SingleWord = «» ‘On exclude list?
                If Len(SingleWord) > 0 Then
                    Found = False
                    For j = 1 To WordNum
                        If Words(j) = SingleWord Then
                            Freq(j) = Freq(j) + 1
                            Found = True
                            Exit For
                        End If
                    Next j
                    If Not Found Then
                        WordNum = WordNum + 1
                        Words(WordNum) = SingleWord
                        Freq(WordNum) = 1
                    End If
                    If WordNum > maxwords — 1 Then
                        j = MsgBox(«The maximum array size has been exceeded. Increase maxwords.», vbOKOnly)
                        Exit For
                    End If
                End If
                ttlwds = ttlwds — 1
                StatusBar = «Remaining: » & ttlwds & »     Unique: » & WordNum
            Next aword
             ‘ Now sort it into word order
            For j = 1 To WordNum — 1
                k = j
                For l = j + 1 To WordNum
                    If (Not ByFreq And Words(l) < Words(k)) Or (ByFreq And Freq(l) > Freq(k)) Then k = l
                Next l
                If k <> j Then
                    tword = Words(j)
                    Words(j) = Words(k)
                    Words(k) = tword
                    Temp = Freq(j)
                    Freq(j) = Freq(k)
                    Freq(k) = Temp
                End If
                StatusBar = «Sorting: » & WordNum — j
            Next j
             ‘ Now write out the results
            tmpName = ActiveDocument.AttachedTemplate.FullName
            Documents.Add Template:=tmpName, NewTemplate:=False
            Selection.ParagraphFormat.TabStops.ClearAll
            With Selection
                For j = 1 To WordNum
                    .TypeText Text:=Words(j) & vbTab & Trim(Str(Freq(j))) & vbCrLf
                Next j
            End With
            ActiveDocument.Range.Select
            Selection.ConvertToTable
            Selection.Collapse wdCollapseStart
            ActiveDocument.Tables(1).Rows.Add BeforeRow:=Selection.Rows(1)
            ActiveDocument.Tables(1).Cell(1, 1).Range.InsertBefore «Word»
            ActiveDocument.Tables(1).Cell(1, 2).Range.InsertBefore «Occurrences»
            ActiveDocument.Tables(1).Range.ParagraphFormat.Alignment = wdAlignParagraphCenter
            ActiveDocument.Tables(1).Rows.Add
            ActiveDocument.Tables(1).Cell(ActiveDocument.Tables(1).Rows.Count, 1).Range.InsertBefore «Total words in Document»
            ActiveDocument.Tables(1).Cell(ActiveDocument.Tables(1).Rows.Count, 2).Range.InsertBefore Totalwords
            ActiveDocument.Tables(1).Rows.Add
            ActiveDocument.Tables(1).Cell(ActiveDocument.Tables(1).Rows.Count, 1).Range.InsertBefore «Number of different words in Document»
            ActiveDocument.Tables(1).Cell(ActiveDocument.Tables(1).Rows.Count, 2).Range.InsertBefore Trim(Str(WordNum))
            System.Cursor = wdCursorNormal
            j = MsgBox(«There were » & Trim(Str(WordNum)) & » different words «, vbOKOnly, «Finished»)
        Selection.HomeKey wdStory

    End Sub
     — Hope this helps.

    Doug Robbins — Word MVP,
    dkr[atsymbol]mvps[dot]org
    Posted via the Community Bridge

    «Adnan Ebrahimi» wrote in message news:8ddb02da-d954-40f4-b4a5-403fa8fa5a69@communitybridge.codeplex.com…

    Hi everyone.

    i want to get all words in a Word Document and List all by ascending order then check the words finally replace wrong word with correct word…

    can everyone help me… solutions…suggestions…?


    Doug Robbins — Word MVP dkr[atsymbol]mvps[dot]org

    • Marked as answer by
      Bessie Zhao
      Monday, February 7, 2011 10:02 AM

  • Hi Abdan

    If you’re working with the Word object model, going through the .NET/COM, Word OLE interface, and given the speed of processing in that interface, I don’t think you can get anything faster than what you’ve got. It’s the nature of the thing you’re doing.

    Possibly, if the file is in the Office 2007/2010 Open XML file format (docx, for example) you can work with that file as you would any XML file. But we can’t help you here with that. You’ll find more information on Open XML file format at openXMLDeveloper.org


    Cindy Meister, VSTO/Word MVP

    • Marked as answer by
      Bessie Zhao
      Monday, February 7, 2011 10:02 AM

word logo

Microsoft Word provides a feature that allows you to search for text within a document. You can also use advanced settings to make your search more specific, such as case matching or ignoring punctuation. Here’s how to use it.

Finding Text in a Word Doc

To search for text in Word, you’ll need to access the “Navigation” pane. You can do so by selecting “Find” in the “Editing” group of the “Home” tab.

Find option in editing group

An alternative method to accessing this pane is by using the Ctrl + F shortcut key on Windows or Command + F on Mac.

RELATED: How to Search for Text Inside of Any File Using Windows Search

With the “Navigation” pane open, enter the text you want to find. The number of instances that text appears throughout the document will be displayed.

enter a word in the search box

You can navigate through the search results by selecting the up and down arrows located beneath the search box or by clicking directly on the result snippet in the navigation pane.

Navigating the search results

Setting Advanced Search Features

The caveat with the basic search function is that it doesn’t take into account many things such, as the case of the letters in the text. This is a problem if you’re searching a document that contains a lot of content, such as a book or thesis.

You can fine-tune these details by going to the “Editing” group of the “Home” tab, selecting the arrow next to “Find,” and selecting “Advanced Find” from the drop-down list.

Advanced Find option

The “Find and Replace” window will appear. Select “More.”

More option in Find and Replace

In the “Search Options” group, check the box next to the options you want to enable.

Match Case option

Now, the next time you search for text in Word, the search will work with the selected advanced options.

RELATED: Microsoft Word: Document Formatting Essentials

READ NEXT

  • › How to Highlight Text in Microsoft Word
  • › How to Search in Google Docs
  • › Why One Ultrawide Is Better Than Two Monitors
  • › The Best DNS Servers for Secure Browsing
  • › Google+ Will Come to a Final End on July 5, 2023
  • › Universal Audio Volt 2 Review: A Workhorse Audio Interface With Vintage Charm
  • › Get to Your Windows 11 Desktop: 7 Fastest Methods
  • › Why the Right-Click Menu in Windows 11 Is Actually Good

How-To Geek is where you turn when you want experts to explain technology. Since we launched in 2006, our articles have been read billions of times. Want to know more?

I want to be able to find and replace eat with Eat in Microsoft Word 2007. However, I don’t want to replace every occurrence of eat such as those that can be found inside other words such as great and meat.

I have tried doing this using the regular Find and Replace tool, but I get words with capital letters in the middle.

Is there a way I can just replace eat with Eat if it only exists on its own?

barlop's user avatar

barlop

23k42 gold badges139 silver badges221 bronze badges

asked Nov 28, 2013 at 22:42

Abu Nooh's user avatar

16

In the Find and Replace window in the Replace tab, click the More >> button to display more Search Options. After where it says Search: click the dropdown arrow and select All. Put a check mark to the left of where it says: Match case. Put another check mark to the left of where it says: Find whole words only.

In the Find what input box type eat.
In the Replace with input box type Eat.

Click the Replace All button to replace all occurrences of «eat» with «Eat».

enter image description here

answered Nov 29, 2013 at 2:06

karel's user avatar

karelkarel

13.3k26 gold badges44 silver badges52 bronze badges

I had troubles searching for the word «he» because I got all the «the» words. For some reason What worked in the end was clicking «match prefix» and «match suffix». «Find whole words only» didn’t work for me. I didn’t need to use the replace function.

answered May 11, 2017 at 15:21

Mary's user avatar

1

Let’s assume you’re a paralegal and you just finished typing a lengthy legal document or a contract for your client, only to discover that you misspelled your client’s name or a wrong company’s name multiple times throughout your document. And don’t have time to manually locate and replace every instance of the text. What would you do? Don’t panic – you can easily fix that with MS Word’s Find and Replace feature.

Find and Replace is one of the most useful features in Microsoft Word that can be used to find a character, a word, or phrase in a document and replace them. You can also find and replace text in a specific section of text or a whole document.

Not only can you find a particular word and replace it with another word, but you can also find text based on its formatting, using wildcards, and with matching prefix or suffix. It also allows you to find and replace text with specific formatting, non-printing characters, or special characters. In this post, you will learn how to find and replace text in MS Word.

Find Text in Microsoft Word

To start with, let’s see how to Find text in Excel using the navigational pane or the Find and Replace tool. Then we’ll explore how to use the Find and Replace tool to replace text based on different options.

Find Text

You can use the Navigation pane to search for a character, a word, or a group of words. And you can access this navigation pane from the Ribbon or by pressing a hotkey Ctrl + F.

To access, the Navigation panel (Find Command), first, open the Word in which you want to search for text. Then, go to the ‘Home’ tab, and click the ‘Find’ button from the Editing group in the Ribbon. Or you can press the shortcut keys Ctrl + F in the keyboard.

This will open up the Navigation pane on the left of the Window. Type the text or phrase you want to find in the ‘Search document’ text box in the Navigation pane and press ‘Enter’. As you type, the tool will show you all the related matches. In our example, we’ll type ‘Tate’.

The Find command searches for all the matching text in the document and highlights them in yellow. The navigation pane shows all instances of the search word (Tate) as a preview of the results

The tool not only highlights the exact words, it even highlights the partially matched words.

You can use the upward and downward arrows beside the text box to jump to the Previous or Next search result. Or you can click on one of the results below the search field to jump to it directly.

Instead of searching through an entire document for a text or phrase, you can also search a large document by headings. To do that, click the ‘Headings’ tab and select a heading in the Navigation pane to browse by headings in the document.

To search through pages in Word, click the ‘Pages’ tab in the Navigation pane and select one of the thumbnail images of all your pages that you want to see. Then, you can search for a specific text on that page.

Once you’re done editing the document, close the Navigation pane and the highlights will disappear.

Advanced Find

If you are looking for more specific words or phrases, for instance, words with a certain font or style, special characters, or only full words, you can use the Advanced Find feature to track them down. This tool lets you customize your search with various options. Here’s how:

Go to the ‘Home’ tab, click the downward arrow next to the ‘Find’ icon in the Editing group, and select ‘Advanced Find’. Or press Ctrl + H shortcut keys to open the Find and Replace tool.

Or you can even launch the Find and Replace tool from the Navigation pane by clicking the magnifying glass icon in the Search Document text box and selecting the ‘Advanced Find’ option.

The Find and Replace dialog box will appear. Here, you can do a basic search, but if you want to customize your search with more options, Click the More >> button.

When you expand the More button, you would find more options with which you can do more advanced searches.

Select one or more options in the Search Options section and click ‘Find Next’ to view the result.

  • Match Case: If the Match case box is checked, it searches for the text that exactly matches the uppercase and lowercase letters you type in the ‘Find what’ field.
  • Find Whole Words Only: This option finds text that is not partial or part of another word, it only finds the whole words that are exactly matched.
  • Use Wildcards: This option is the opposite of the ‘Find Whole Words only’ option. The wildcards you can use are single character (?) and multiple characters (*) wildcards. For example, when you are searching for “Wall*”, you’ll get Walls, Wallmart, or Wallpaper, etc.
  • Sounds Like: This option finds words or phrases that sound phonetically similar such as ‘eyes’ when searching for ‘ice’ or ‘ant’ for ‘aunt’.
  • Find All Word Forms: This option finds all variants of words (all verb forms). For example, when you search swim, you’ll get swim, swam, and swimming.
  • Match Prefix: This searches for words with the same prefixes. For example, search for hype, and you may get hyperactive, hypersensitive, hypercritical.
  • Match Suffix: This searches for words with the same suffixes. For example, search for less, and you may get endless, ageless, lawless, effortless.
  • Ignore Punctuation Characters: This option lets you ignore punctuation characters in a text when searching. For instance, finding the word ‘Mrs. Jones’ when you searched for ‘Mrs Jones’.
  • Ignore white-space characters: This option lets you ignore white spaces in between. For instance, finding the word ‘Days are good’ when you searched for ‘Daysaregood’.

We’ll apply few of these options and see how it works with an example.

Match Case

For example, let’s say we search the word ‘MAGAZINE’ in all caps without the match case option enabled. Type the word in the ‘Find what’ field and click the ‘Find Next’ button.

In the ‘Search’ drop-down under Search Options, you choose ‘Down’ to start looking from the top to bottom of the document, choose ‘down’ to start looking from the bottom to top of the document, or ‘All’ to search all over the document.

When you click ‘Find Next’, it will highlight the first instance of the word in grey. When you click ‘Find Next’ again, it will select the next instance of the word. As you click Find Next each time, it will highlight the matching word one at a time.

If you want to highlight all the instances of the word at once, click the ‘Reading Highlight’ button and select ‘Highlight All’.

You would get several matches with the word all highlighted in yellow.

But if we searched the same word (capitalized) with match case enabled, we would get no results. Because the tool only looks for the word that exactly matches the uppercase letters we typed earlier.

Find All Word Forms

In another example, if we searched the word ‘write’ with the ‘Find all word forms (English)’ setting enabled, we would get all variants of the word.

Word will find all verb forms of the word as shown below.

Advanced Find with Formatting

You can also search for certain word or phrase with specific formatting applied.

To find words with formatting, first, type the word in the ‘Find what’ box and click the ‘Format’ drop-down button at the bottom of the Find and Replace dialog box. Then choose the format in which you want to look for the word.

You can even find words with specific font format, paragraphs with specific alignment and format, tabs, words in a certain language, text frame, style, and highlight.

We are going to search for the word with a certain font format, so we are choosing ‘Font’. In the Find Font window, specify the format as shown below and click ‘OK’.

The chosen Format ‘Font: (Default) STXingkai, Italic’ will appear under the ‘Find What’ text box in the Find and Replace dialog box. Now click ‘Highlight All’ to find the matching words with that format.

As you can see, the tool only highlights the words with that specific font format, while it doesn’t highlight the same matching word in a different font format.

To clear the formatting for the search, click the ‘No Formatting’ button at the bottom of the Find and Replace dialog box.

Find Text with Only Formatting

You can even find texts with formatting alone. You don’t even have to type a word or phrase, you can just specify the only format of the text.

And the tool will find you all the words or phrases with the matching format.

The Find and Replace tool also lets you find non-breaking characters/special characters or words with special characters by choosing the character(s) from the ‘Special’ drop-down button at the bottom of the Find and Replace dialog box.

Find and Replace Text in MS Word

So far, you have learned how to find text and how to find text with advanced options, now let us see how to replace the found text.

The Replace function allows you to find a word or a group of words and replace it with something else or find a word based on text formatting and replace it with other text, or find a specific word and replace its formatting, or find and replace characters with other special characters or words.

Find and Replace Text

To find and replace a particular word or phrase for another, navigate to the Editing group in the ‘Home’ tab and click the ‘Replace’ command. Alternatively, you can also press the keyboard shortcut Ctrl + H.

This will open the Find and Replace dialog box. In the Find and Replace dialog box, fill out the two fields:

  • Type the text you want to search for in the ‘Find what:’ field.
  • Type the text you want to replace it with in the ‘Replace with:’ field.

Once you enter the necessary texts, you can either click the ‘Replace’ button to replace the text one by one or ‘Replace All’ to replace all the instances of the word at once.

Replacing all the text together may cause errors in your document if you are not cautious. For example, if you are replacing all the ‘He’ words with ‘She’, it may also replace the words Head with Shead, help with Shelp, heat with Sheat, and so on. So sometimes, it’s better to replace them one at a time.

Click the ‘Find Next’ to find the first instance of the text highlighted in gray and click ‘Find Next’ again to jump to the next instance. Review each instance and click ‘Replace’ to exchange the currently highlighted text.

You can click the title bar of the Find and Replace dialog box and drag it out the way to see the results behind it.

Once you’re done, click the ‘Close’ button to close the dialog box.

Note: If you leave the ‘Replace With’ field blank, the search text in the ‘Find What’ field will be deleted from the document.

Advanced Find and Replace Text

If you are looking to replace more specific words such as words with punctuation, capitalization, certain font or style, or even special characters, you can use the advanced search options of the Find and Replace tool.

To access the advanced options of Find and Replace, click the ‘More >>’ button at the bottom of the dialog.

Here, you have various search and replace options that you can use to narrow down your search.

As we discussed earlier in the Advanced Find section, you already know what each option under the Search Options is used for.

Select one or more options under the Search Options and click ‘Find Next’ to find the matching words or click ‘Replace’ to replace one instance at a time or click ‘Replace All’ to exchange every instance at once.

Example:

As we mentioned before, this tool finds the combinations of characters of the given word, even as part of other words.

For example, when we search for the word ‘Tate’ in the document, it finds that combination of characters even as part of other words like ‘United States’.

And this is not ideal when we replace these words. Also if you hundreds of matches, it would take forever to replace words one by one.

To fix this, check the ‘Find whole words only’ option, to find the words that are not partial or part of other words, it only finds whole words that are exactly matched. Here, we also checked the ‘Match case’ option to make sure it matches the exact uppercase and lowercase letters too. Then, click ‘Replace’ or ‘Replace All’ to replace the words.

You can use the rest of the above options in a similar fashion to customize your search to find specific words.

Find Text and Replace Formatting

You can also find a particular word and replace it with the same word but with specific formatting or replace it with another word with formatting.

For example, we want to find and replace the whole word ‘Lytle’ with a specific font format. To replace formatting, type the word you want to find in the ‘Find what’ field and select the ‘Find whole words only’ option to search for only that whole word. Then, click the ‘Format’ button at the bottom of the dialog box and choose ‘Font’.

You can replace words with other formatting options such as Style, Paragraph, Frame, and so on.

In the Replace Font dialog, choose your desired format style such as font, font style, font color, etc. In our case, we are choosing ‘Elephant’ font and ‘Italic’ style. Then, click ‘OK’ to apply.

Back in the ‘Find and Replace’ dialog box, you can see the chosen formatting is set for the ‘Replace with:’. Since we are only replacing the formatting of the word, leave the ‘Replace with:’ field blank. Then, click either the ‘Replace’ or ‘Replace All’ button to replace the formatting.

Once you click the ‘Replace All’ button a message box will appear informing you how many replacements were made (In our case, 222).

As you can see, all the instances of the word ‘Lytle’ is replaced with specified formatting.

Find Text with a Specific Formatting and Replace

If you want to find a text that has a certain formatting style and replace it with another text, without changing the formatting or with different formatting, you can do it by applying that formatting to the Find word. Here’ how you do this:

For example, we want to find and replace the text ‘Leatherman’, that has particular formatting (Font: Old English Text MT, Style: Italic, Color: Blue, Accent 5), with the text ‘Lincoln’ (without changing the formatting).

First, type the text you want to search for (in our case, Leatherman) in the ‘Find What’ field. Then, click on the ‘Format’ button and choose the options as required (Font).

In the Find Font, dialog box, select the required formatting with which we’re going to find text. In our example, the text ‘Leatherman’ is in ‘Font: Old English Text MT, Style: Italic, and Color: Blue, Accent 5’ formatting. Once the options are selected, click ‘OK’.

Now the selected formatting options should appear under the ‘Find What’ text field in the Find and Replace.

Next, type the text you want it to be replaced with (Lincon) in the ‘Replace with field:’ and click ‘Replace All’. You can also add formatting to the replacement text if you want.

Once you click ‘Replace All’, all of the instances will be replaced and a prompt will show you how many replacements were made.

As you can see all the instances of the ‘Leatherman’ with formatting is replaced by the ‘Lincoln’ without changing the formatting.

Find and Replace Special Characters/Non-Printing Characters

The find and replace feature can also help you find special character characters and replace them with other special characters such as ®, é, ä, or any other character listed in the Symbol dialog. You can also find and replace non-printing characters such as manual line breaks, tab characters, paragraph marks, etc. You can even replace special characters with text and vice versa.

For example, if you want to find and replace the word ‘protege’ with ‘protégé’, type ‘protege’ in the Find what box and type ‘protégé’ in the ‘Replace with’ box. Then, click ‘Replace’ or ‘Replace All’ to replace them.

As you can see the found texts are replaced with replacement text with special characters.

Sometimes you want to replace manual line breaks (non-printing characters) with paragraph marks, in such cases, you need to insert respective character code in the ‘find what’ and ‘replace with’ boxes.

For example, we want to replace all manual line breaks in the documents with paragraph marks. The character code for a manual line break and paragraph mark is ‘^l’ and ‘^p’ respectively. You can either type the code or if you don’t know the code, use the ‘Special’ button to insert the code.

To insert non-breaking characters, first, select the text box where you want to insert. Then, click the ‘Special’ button at the bottom of the Find and Replace dialog box and select an item from the list. And the tool will automatically insert the respective character code in the text box.

In the example, we are choosing ‘Manual Line Break’ for the ‘Find what’ field.

And ‘Paragraph Mark’ for the ‘Replace with’.

Then, click ‘Find Next’ to see where the line breaks are located. Now, click ‘Replace All’ to replace all the manual line breaks in the documents.

As you can see below, the manual line breaks are replaced with paragraph marks.

In the similar way, you can also replace non-breaking characters/special characters with text and vice versa.

That’s everything you need to know about finding and replacing text in Microsoft Word.

Понравилась статья? Поделить с друзьями:
  • Find function in word is not working
  • Find all words in excel
  • Find different types of fiction in the word search
  • Find function for excel
  • Find differences in excel