Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,230 questions

56,132 answers

573 users

How to remove multiple spaces from a string in C++

1 Answer

0 votes
#include <iostream>
#include <string>
#include <regex>

// Function to trim and normalize whitespace in a string
std::string removeMultipleSpaces(const std::string& input) {
    std::string s = input;

    // Trim leading whitespace
    s.erase(0, s.find_first_not_of(" \t\n\r"));

    // Trim trailing whitespace
    s.erase(s.find_last_not_of(" \t\n\r") + 1);

    // Replace multiple spaces with a single space
    s = std::regex_replace(s, std::regex("\\s+"), " ");

    return s;
}

int main() {
    std::string s = "  c++  java      python      c#        ";

    std::string cleaned = removeMultipleSpaces(s);

    std::cout << cleaned << std::endl;
}



/*
run:

c++ java python c#

*/

 



answered Jul 7, 2025 by avibootz
...