将一个字符串转换为另一个字符串时出现问题

Issues converting one string to another

本文关键字:字符串 另一个 问题 转换 一个      更新时间:2023-10-16

我想将表单的日期strVal="1992-12-12"或"1992-9-9"转换为19921212&为此,我用C/C++编写了以下代码。但问题是它将1992-12-12转换为1992012012。有人能指导我如何修复这个bug吗?我可能还有"1992-9"表格的输入,我想将其转换为19920900。或"1992"至"19920000">

stringstream     collectTimeBegin;
for (string::iterator it = strVal.begin(); it != strVal.end(); )
{
      if (*it != '-')
      {
             cout<< "n -- *it=" << *it;
             collectTimeBegin << *it;
             it++;
      }
      else
      {
           stringstream    si("");
           stringstream    sj("");
           int             i;               
           it++;
           si << *(it + 1);
           sj<< *(it + 2);
           i = atoi((si.str()).c_str()), j = atoi((sj.str()).c_str());
           cout << "n i=" << i << "t j=" << j << "n";
           if ((i == 4) || (i == 5) || (i == 6) || (i == 7) || (i == 8) || (i == 9))
           {
                 cout << "n 1. *it=" << *it;
                 collectTimeBegin << *it;
                 it++;
           }
           else if ((j == 0) || (j == 1) || (j == 2) || (j == 3) || (j == 4) || 
                    (j == 5) || (j == 6) || (j == 7) || (j == 8) || (j == 9))
           {
                 string     str = "0";
                 cout << "n 2. *it=" << *it;
                 collectTimeBegin << str;
                 collectTimeBegin << *it;
                 it++;
            }
       }
 }

这里有一个使用标准C++的解决方案;它使用了与Christian相同的方法:根据破折号分割输入,用0填充缺失的数字:

#include <string>
#include <sstream>
#include <algorithm>
int main()
{
    std::string date = "1992-9-12";
    std::replace(date.begin(), date.end(), '-', ' ');   // "1992 9 12"
    std::istringstream iss(date);
    int year = 0, month = 0, day = 0;
    if (iss.good()) iss >> year;    // 1992
    if (iss.good()) iss >> month;   // 9
    if (iss.good()) iss >> day;     // 12
    std::ostringstream oss;
    oss.fill('0');
    oss.width(4); oss << year;
    oss.width(2); oss << month;
    oss.width(2); oss << day;
    std::string convertedDate = oss.str();  // 19920912
}

如果你不介意使用外部库,我会用boost来完成。

    string input = "1992-9-9";
    vector<string> v;
    boost::algorithm::split(v, input, boost::algorithm::is_any_of("-"));
    string output;
    BOOST_FOREACH(const string &s, v)
    {
        if (s.size() == 1)
        {
            output += "0"+s;
        } else {
            output += s;
        }
    }
    if (output.size() == 4)
        output += "0000"
    if (output.size() == 6)
        output += "00"

编辑:如果您的输入字符串只有6或4位数长,则忘记处理这种情况

相关文章: