web-dev-qa-db-ja.com

C ++でフォーマットされた入力を読み取る最も簡単な方法は?

_:48754+7812=Abcs_のように、このようなフォーマットされた文字列を読み取る方法はありますか。

X、Y、Zの3つの文字列があります。

_X = 48754 
Y = 7812
Z = Abcs
_

2つの数値のサイズと文字列の長さは異なる場合があるため、substring()などは使用したくありません。

C++にこのようなパラメータを与えることは可能ですか?

_":#####..+####..=SSS.."
_

だからそれは何が起こっているのかを直接知っていますか?

17
Loers Antario

可能性は boost::split() です。これにより、複数の区切り文字を指定でき、入力のサイズに関する事前の知識は必要ありません。

_#include <iostream>
#include <vector>
#include <string>

#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/split.hpp>

int main()
{
    std::vector<std::string> tokens;
    std::string s(":48754+7812=Abcs");
    boost::split(tokens, s, boost::is_any_of(":+="));

    // "48754" == tokens[0]
    // "7812"  == tokens[1]
    // "Abcs"  == tokens[2]

    return 0;
}
_

または、 sscanf() を使用します:

_#include <iostream>
#include <cstdio>

int main()
{
    const char* s = ":48754+7812=Abcs";
    int X, Y;
    char Z[100];

    if (3 == std::sscanf(s, ":%d+%d=%99s", &X, &Y, Z))
    {
        std::cout << "X=" << X << "\n";
        std::cout << "Y=" << Y << "\n";
        std::cout << "Z=" << Z << "\n";
    }

    return 0;
}
_

ただし、ここでの制限は、入力を解析する前に文字列の最大長(Z)を決定する必要があることです。

11
hmjd
#include <iostream>
#include <sstream>

int main(int argc, char **argv) {
  std::string str = ":12341+414112=absca";
  std::stringstream ss(str);
  int v1, v2; 
  char col, op, eq; 
  std::string var;
  ss >> col >> v1 >> op >> v2 >> eq >> var;
  std::cout << v1 << " " << v2 << " " << var << std::endl;
  return 0;
}
18
perreal

scanfを使用できます。それは過度にC++ではありません-ishですが、非常に少ないコード行でトリックを実行します。

char a[101], b[111], c[121];
sscanf(":48754+7812=Abcs", ":%100[^+]+%110[^=]=%120s", a, b, c);
string sa(a), sb(b), sc(c);
cout << sa << "-" << sb  << "-" << sc << endl;

非常に限られた正規表現構文を使用して、読み取る文字列で受け入れられる文字を指定するという考え方です。この場合、最初の文字列はプラスまで読み取られ、2番目の文字列は等号まで読み取られます。

3
dasblinkenlight

例えば。

#include <boost/regex.hpp>
#include <iostream>

int main()
{
   boost::regex re("\":(\\d+)\\+(\\d+)=(.+)\"");
   std::string example = "\":48754+7812=Abcs\"";
   boost::smatch match;
   if (boost::regex_match(example, match, re))
   {
      std::cout << "f number: " << match[1] << " s number: " << match[2] << " string: " << match[3]
      << std::endl;
   }
   else
   {
      std::cout << "not match" << std::endl;
   }
}

2番目のバリアントは、文字列でのみ機能します。

#include <string>
#include <iostream>

int main()
{
   std::string s = "\":48754+7812=Abcs\"";
   std::string::size_type idx = s.find(":");
   std::string::size_type end_first = s.find("+", idx + 1);
   std::string f_number = s.substr(idx + 1, end_first - (idx + 1));
   std::cout << f_number << std::endl;
   std::string::size_type end_second = s.find("=", end_first + 1);
   std::string s_number = s.substr(end_first + 1, end_second - (end_first + 1));
   std::cout << s_number << std::endl;
   std::string::size_type string_end = s.find("\"", end_second);
   std::string str = s.substr(end_second + 1, string_end - (end_second + 1));
   std::cout << str << std::endl;
}
2
ForEveR