0

我儿子正在学习 C++,他的一个练习是让用户在 DD/MM/YYY 中输入日期,然后将其输出到月日、年

So: 19/02/2013
Output: February 19, 2013.

我试图帮助他理解各种方式,但现在我自己也搞糊涂了。

getline() std::string::substr() std::string::find() std::string::find_first_of() std::string::find_last_of()

我无法用这些完全正确的方式弄清楚。

我目前的解析尝试是:

#include <iostream>
#include <string>

using namespace std;

int main (void)
{
    string date;
    string line;

    cout << "Enter a date in dd/mm/yyyy format: " << endl;
    std::getline (std::cin,date);

    while (getline(date, line))
    {
        string day, month, year;
        istringstream liness( line );
        getline( liness, day, '/' );
        getline( liness, month,  '/' );
        getline( liness, year,   '/' );

        cout << "Date pieces are: " << day << " " << month << " " << year << endl;
    }
}

但我收到如下错误:

`g++ 3_12.cpp -o 3_12`
`3_12.cpp: In function ‘int main()’:`
`3_12.cpp:16: error: cannot convert ‘std::string’ to ‘char**’ for argument ‘1’ to ‘ssize_t getline(char**, size_t*, FILE*)’`
`3_12.cpp:18: error: variable ‘std::istringstream liness’ has initializer but incomplete type`
4

4 回答 4

4
int day, month, year;
char t;
std::cin >> day >> t >> month >> t >> year;
于 2013-02-19T20:38:37.943 回答
1
于 2013-02-19T20:48:33.797 回答
1

您错过了std正则表达式库!我认为这是最安全、最有效的方法。

回到主题,我认为既然getline是一个extern "C"函数,你不能使用 a 来重载它using namespace std(顺便说一句应该禁止)。您应该尝试std在所有getline呼叫之前添加。

于 2013-02-19T20:29:36.150 回答
1

对于std::istringstream,您需要:

#include <sstream>

PS 不要使用using namespace std;. 这是一个坏习惯,最终会给你带来麻烦。

于 2013-02-19T20:37:54.857 回答