C ++不能减去两个字符串

时间:2013-10-16 20:02:26

标签: c++ string operator-keyword subtraction

我想在这段代码中减去两个字符串,但它不会让我这样做并给出一个操作符 - 错误。此代码基本上尝试将完整的输入名称分成两个输出:名字和姓氏。请帮忙!谢谢!

#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;

string employeeName, firstName, lastName;
int pos1, difference;

int main() {
    cout << "Enter your full name: " << endl;
    getline(cin, employeeName);

    pos1 = employeeName.find(" ");
    difference = pos1 - 0;
    lastName = employeeName.erase(0,difference);
    firstName = employeeName - lastName;

    cout << lastName << firstName << endl;

    system("pause");
    return 0;
}

3 个答案:

答案 0 :(得分:3)

您应该使用std::string::substr。减去这样的字符串是无效的。

firstName = employeeName.substr(0, employeeName.find(" "));

第一个参数是要提取的子字符串的起始索引,第二个参数是子字符串的长度。

答案 1 :(得分:2)

没有&#34;减去&#34; { - 3}}的( - )运算符。您必须使用std::stringstd::string::substr

如果你真的想使用 - 运算符,你可以重载它。

答案 2 :(得分:2)

如何为字符串定义减号运算符?你会从头开始减去吗?还是结束?

此外,"cat" - "dog"是什么?这个算子没有意义。

相反,您可能希望使用字符串索引,即employeeName[i],并单独复制字符,或使用std::string::substrstd::string::erase,正如其他人所建议的那样。

我会发现substr()最简单,因为它能够删除字符串的部分(在这种情况下,是名字和姓氏)。