在 C++ 中删除字符串中的空格

Jinku Hu 2023年1月30日 2021年4月29日
  1. 使用 erase-remove 习惯用法从 C++ 中的字符串中删除空格
  2. 在 C++ 中使用自定义函数从字符串中删除空格
在 C++ 中删除字符串中的空格

本文将演示有关如何在 C++ 中从字符串中删除空格的多种方法。

使用 erase-remove 习惯用法从 C++ 中的字符串中删除空格

C++ 中用于范围操作的最有用的方法之一是 erase-remove 习惯用法,它包含两个函数-std::erase(大多数 STL 容器的内置函数)和 std::remove(STL 算法库的一部分)。请注意,它们都链接在一起以对给定的对象执行删除操作。std::remove 函数需要两个迭代器来指定范围,第三个参数表示要删除的元素的值。在这种情况下,我们直接指定一个空格字符,但是可以指定任何字符以删除字符串中所有出现的字符。

#include <iostream>
#include <string>

using std::cout; using std::cin;
using std::endl; using std::string;

int main(){
    string str = "  Arbitrary   str ing with lots of spaces to be removed   .";

    cout << str << endl;

    str.erase(std::remove(str.begin(), str.end(), ' '), str.end());

    cout << str << endl;

    return EXIT_SUCCESS;
}

输出:

Arbitrary   str ing with lots of spaces to be removed   .
Arbitrarystringwithlotsofspacestoberemoved.

另一方面,用户也可以将一元谓词作为第三个参数传递给 std::remove 算法。谓词应为每个元素求出布尔值,并且当结果为 true 时,将从范围中删除相应的值。因此,我们可以利用预定义的 isspace 函数来检查多个空格字符,例如空格-" ",换行符-\n,水平制表符-\t 以及其他几个字符。

#include <iostream>
#include <string>

using std::cout; using std::cin;
using std::endl; using std::string;

int main(){
    string str = "  Arbitrary   str ing with lots of spaces to be removed   .";

    cout << str << endl;

    str.erase(std::remove_if(str.begin(), str.end(), isspace), str.end());

    cout << str << endl;

    return EXIT_SUCCESS;
}

输出:

Arbitrary   str ing with lots of spaces to be removed   .
Arbitrarystringwithlotsofspacestoberemoved.

在 C++ 中使用自定义函数从字符串中删除空格

请注意,所有以前的解决方案都修改了原始的字符串对象,但是有时,可能需要创建一个删除所有空格的新字符串。我们可以使用相同的 erase-remove 惯用语来实现自定义函数,该惯用语接受字符串引用并返回已解析的值,以将其存储在单独的字符串对象中。也可以修改此方法以支持另一个函数参数,该参数将指定需要删除的字符。

#include <iostream>
#include <string>

using std::cout; using std::cin;
using std::endl; using std::string;

string removeSpaces(const string& s) {
    string tmp(s);
    tmp.erase(std::remove(tmp.begin(), tmp.end(), ' '), tmp.end());
    return tmp;
}

int main(){
    string str = "  Arbitrary   str ing with lots of spaces to be removed   .";

    cout << str << endl;

    string newstr = removeSpaces(str);

    cout << newstr << endl;

    return EXIT_SUCCESS;
}

输出:

Arbitrary   str ing with lots of spaces to be removed   .
Arbitrarystringwithlotsofspacestoberemoved.
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn

相关文章 - C++ String