string没有名为'subtr'的成员错误

时间:2013-11-15 17:06:27

标签: c++ string subtraction

感谢您的阅读。我正在制作一个脚本,以这种格式阅读生日:月/日/年,并将年,日和月分开。我得到了年份部分,但是对于白天部分,我试图使用string.subtr(,)减去第二个'/'和最终位置值的位置值。所以,例如,我试图在findDay()函数中从01/26/1994获得01/26。 但是我似乎在第55行得到了“字符串没有名为'subtr'的成员'错误。有人可以指导我,因为我是一个全新的程序员。另外,感谢您的继续帮助,因为我在收到本网站的意见后加倍了解。

#include <iostream>
#include <cstdlib>
#include <string>
#include <fstream>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
using namespace std;

void findYear(string &);
void findDay (string &);
void findMonth(string &);
int main()
{
    string birthday;
    cout << "Enter birthday: " << endl; // 01/26/1994
    cin >> birthday;
    string year = birthday;
    string day = birthday;
    string month = birthday;
    findYear(year);
    cout << year << endl;
    findDay(day);
    cout << day << endl;

    system("pause");
    return 0;
    int slashpos = birthday.find('/');

}

void findYear(string &year)
{
    int slashpos = year.find('/');
    int i = 0;
    string temp2;
while(year.at(year.length()-1-i)!='/')
    {
        temp2 += year.at(year.length()-1-i);
        i++;
    }
        string rtemp2 = "";
        for(int k = 0; k < temp2.length(); k++)
        {
            rtemp2 += temp2.at(temp2.length()-1-k);
            year = rtemp2; 
        }

}
void findDay (string &day)
{
    string tempday1 = "";
    string temp2 = "";
    int i = 0;
    tempday1 = day.subtr(day.rfind('/'),day.length()-1); /* error here! [Error] 'std::string' has no member named 'subtr'*/
    while(tempday1.at(tempday1.length()-1-i)!='/')
    {
        temp2 += tempday1.at(tempday1.length()-1-i);
        i++;
    }
        string rtemp2 = "";
        for(int k = 0; k < tempday1.length(); k++)
        {
            rtemp2 += tempday1.at(tempday1.length()-1-k);
            day = rtemp2; 
        }
}

1 个答案:

答案 0 :(得分:4)

substr,第二个s。 SUB- 取值 TRING。