Skip to content

How to remove empty lines in VS Code

I recently had to work with a file, in VS Code, that had several empty lines I wanted to remove all at once.

We're talking about 700+ empty lines with some text in between, and I didn't want to do this manually.

I'm a programmer, so I'd rather spend 5 minutes making a task easier rather than spend the same amount of time doing an annoying job.

I searched a bit and found this simple way to do so: replace \n\n with \n.

Remove empty lines in VS Code

I ran "replace all" inside the file, and half of the lines were removed. So I ran it again, and again and again, until I got to 1 empty line.

Update: \n\n+ will replace all lines at once without having to repeat the operation

THE VALLEY OF CODE

THE WEB DEVELOPER's MANUAL

You might be interested in those things I do:

  • Learn to code in THE VALLEY OF CODE, your your web development manual
  • Find a ton of Web Development projects to learn modern tech stacks in practice in THE VALLEY OF CODE PRO
  • I wrote 16 books for beginner software developers, DOWNLOAD THEM NOW
  • Every year I organize a hands-on cohort course coding BOOTCAMP to teach you how to build a complex, modern Web Application in practice (next edition February-March-April-May 2024)
  • Learn how to start a solopreneur business on the Internet with SOLO LAB (next edition in 2024)
  • Find me on X

Related posts that talk about tools: