M HYPE SPLASH
// updates

Word 2013 - How do you delete a list of numbers at the side?

By Emma Valentine

I have a Word 2013 document on my PC. I have opened a 36 page document (huge, word count more than 3300). I don't know why but there is a list of numbers on the left for each line. They are not suitable for printing. So, can someone please tell me how to remove them?

1

8

2 Answers

  1. Go to Page Layout tab > Line Numbers > Line Numbering Options:

    1

  2. Go to Layout tab > click Line Numbers:

    2

  3. Uncheck Add line numbering and OK your way out:

    3

Source

2

Open the document in or copy it to a text editor with regex capabilities I am writing this with notepad++ in mind but it should work similarly with other editors. Open find&replace in the editor (probably strg+f). Make sure to enable regex matching. In the search field enter

\n\d+(?=\s)

if you only want to remove the numbers or

\n\d+\s+

if you also want to remove the whitespaces on the right of the numbers. In the replace field enter \n. Click Replace all and you should be done. You can try Find all first if you want to make sure that the regex actually works (I am not 100% sure and maybe you have some weird end-of-line characters).

Note: this only works if your document is just text and no sophisticated formatting like fonts and colors and bold and italics and all the other stuff you can do with word processors.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy