c ++ sscanf读取字符串向量

时间:2012-10-17 15:20:53

标签: c++ linux

感谢previous post上的支持......我现在正试图将矢量字符串存储在另一个字符串上并执行sscanf来检查文本,例如。 “TEXT”如果发现在行尾添加另一个文本....

任何想法???

#include <iostream>
#include <vector>
#include <string>
#include <stdio.h>

using namespace std;

int main() {
  vector<string> vs;
  vector<string>::iterator vsi;
  string agent;
  string buffer;
  string line;
  while (!(cin.eof())) {
    getline(cin, buffer);
    cout << buffer << endl;
    vs.push_back(buffer);
  };

  vsi = vs.begin();
  for (int count=1; vsi != vs.end(); vsi++,count++){
    cout << "string" << count <<"="<< *vsi << endl;
    line = *vsi;
    sscanf(line, "%s %[^\n]",text);
//dummy code
if text=="TEXT" do this:
    cout << "agent" << text << "endl";
  }
else: do nothing


  return 0;
}



[root@server dev]# g++ -o newcode newcode.cpp 
newcode.cpp: In function ‘int main()’:
newcode.cpp:24: error: cannot convert ‘std::string’ to ‘const char*’ for argument ‘1’ to ‘int sscanf(const char*, const char*, ...)’
[root@server dev]# 

更新: 我在sscanf上使用了line.c_str()并发出了这个错误

#include <iostream>
#include <vector>
#include <string>
#include <stdio.h>

using namespace std;

int main() {
  vector<string> vs;
  vector<string>::iterator vsi;
  string agent;
  string buffer;
  string line;
  while (!(cin.eof())) {
    getline(cin, buffer);
    cout << buffer << endl;
    vs.push_back(buffer);
  };

  vsi = vs.begin();
  for (int count=1; vsi != vs.end(); vsi++,count++){
    cout << "string" << count <<"="<< *vsi << endl;
    line = *vsi;
    cout << "LINE:" << line.c_str() << endl;
    sscanf(line.c_str(), "%s %[^\n]",agent);
 /*   cout << "agent" << agent << "endl"; */
  }

  return 0;
}

[root@server dev]# g++ -o newcode newcode.cpp 
newcode.cpp: In function ‘int main()’:
newcode.cpp:25: warning: cannot pass objects of non-POD type ‘struct std::string’ through ‘...’; call will abort at runtime
[root@server dev]# 

我想要做的是当检测到特定行上的字符串时,它会将文本附加到行尾和标准输出...

3 个答案:

答案 0 :(得分:1)

目前还不完全清楚你要做什么,但如果你想把正确的类型传递给sscanf,你需要改变一些事情。 sscanf只处理c字符串并且你试图在c ++字符串对象中传递它,为了解决这个问题,你可能希望在sscanf中使用line.c_str()来以正确的格式传递它。

更好的方法是使用类似string :: find的c ++算法,因为这样就不需要使用sscanf了。

答案 1 :(得分:0)

我不确定你想做什么,但是你应该看看字符串:: find:Cplusplus reference

答案 2 :(得分:0)

而不是使用sscanf尝试使用与stringstream / cin几乎相同的cout