MS Word: Removing Unwanted Spaces a Complete Guide
- Fakhriddinbek
- 4 days ago
- 2 min read
When working with Microsoft Office tools like Word, Excel, and PowerPoint, unwanted spaces often appear in our documents or data. These extra spaces can cause formatting issues, misaligned text, and even wrong results in formulas. In this guide, we will explore MS Word's Removing Unwanted Spaces.

In the screenshot above there are unwanted spaces between words, which are highlighted with red line. We need to remove them, but without manual actions.
Removing MS Word Unwanted Spaces a Complete Guide
Unwanted spaces usually appear in Word documents when we copy text from the web, PDF, or another program. Here’s how to fix them:
Find and Replace method
Press Ctrl + H to open the Find and Replace dialog.
In “Find what”, type two spaces ( ).
In “Replace with”, type one space ( ).
Click Replace All. Repeat until no double spaces remain.
Trim spaces around paragraphsSelect the text → Layout Tab → Spacing → adjust Before and After values to 0.

Advanced way to remove multiple spaces
MS Word: Removing Unwanted Spaces a Complete Guide
Find what: ( ){2,}
( ) → matches a single space.
{2,} → means "2 or more occurrences". So together ( ){2,} finds every place where there are 2 or more spaces in a row.
Replace with: \1
\1 refers back to the first captured group (the single space). This means all the extra spaces are replaced with just one space.
Use wildcards: Checked (important, otherwise {2,} won’t work).
How to Use It
Press Ctrl + H to open Find and Replace.
In Find what: type ( ){2,}.
In Replace with: type \1.
Check Use wildcards.
Click Replace All.
Result
All multiple spaces (2, 3, 4, …) will be reduced to a single space throughout your document in one click.
Conclusion
Advanced method is more powerful than the simple Find two spaces → Replace with one loop, because it catches all cases at once (whether there are 2, 5, or even 20 spaces).
Unwanted spaces may look small, but they can break the accuracy and formatting of your work. With these methods, you’ll save time, reduce errors, and make your documents cleaner.
Comments