Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1112577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T02:44:01+00:00 2026-05-17T02:44:01+00:00

I often work with text files which have a variable amount of whitespaces as

  • 0

I often work with text files which have a variable amount of whitespaces as word separators (text processors like Word do this, to distribute fairly the whitespace amount due to different sizes of letters in certain fonts and they put this annoying variable amount of spaces even when saving as plain text).

I would like to automate the process of replacing these sequences of whitespaces that have variable length with single spaces. I suspect a regex could do it, but there are also whitespaces at the beginning of paragraphs (usually four of them, but not always), which I would want to let unchanged, so basically my regex should also not touch the leading whitespaces and this adds to the complexity.

I’m using vim, so a regex in the vim regex dialect would be very useful to me, if this is doable.

My current progress looks like this:

:%s/ \+/ /g

but it doesn’t work correctly.

I’m also considering to write a vim script that could parse text lines one by one, process each line char by char and skip the whitespaces after the first one, but I have a feeling this would be overkill.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T02:44:02+00:00Added an answer on May 17, 2026 at 2:44 am

    In the interests of pragmatism, I tend to just do it as a three-stage process:

    :g/^    /s//XYZZYPARA/g
    :g/ \+/s// /g
    :g/^XYZZYPARA/s//    /g
    

    I don’t doubt that there may be a better way (perhaps using macros or even a pure regex way) but I usually find this works when I’m in a hurry. Of course, if you have lines starting with XYZZYPARA, you may want to adjust the string 🙂

    It’s good enough to turn:

        This is a new paragraph
    spanning       two lines.
        And    so    is   this but on one line.
    

    into:

        This is a new paragraph
    spanning two lines. 
        And so is this but on one line.
    

    Aside: If you’re wondering why I use :g instead of :s, that’s just habit mostly. :g can do everything :s can and so much more. It’s actually a way to execute an arbitrary command on selected lines. The command to execute happens to be s in this case so there’s no real difference but, if you want to become a vi power user, you should look into :g at some point.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I often work with sales and marketing types that cannot figure out how to
At work I am responsible for writing specifications quite often and I am also
Here at work, we often need to find a string from the list of
I always work in windows environment and most often to write the program in
I often run into the following problem. I work on some changes to a
I work a lot with network and serial communications software, so it is often
I frequently work with multiple instances of Visual Studio, often working on different branches
While using Vim (at home and at work), I often find myself doing similar
Often while editing config files, I'll open one with vi and then when I
Often, I find myself wanting to write a unit test for a portion of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.