そこで私の教授は、C++ で正規表現を使用する作業を教えてくれました。
そこで、Eclipse でコードを作成しようとしました (Linux (ubuntu 12.04) を使用しています)。
だから私はコードを取った:
// regex_search example
#include <iostream>
#include <string>
#include <regex>
int main ()
{
std::string s ("this subject has a submarine as a subsequence");
std::smatch m;
std::regex e ("\\b(sub)([^ ]*)"); // matches words beginning by "sub"
std::cout << "Target sequence: " << s << std::endl;
std::cout << "Regular expression: /\\b(sub)([^ ]*)/" << std::endl;
std::cout << "The following matches and submatches were found:" << std::endl;
while (std::regex_search (s,m,e)) {
for (auto x:m) std::cout << x << " ";
std::cout << std::endl;
s = m.suffix().str();
}
return 0;
}
ご覧のとおり、これは正規表現を操作するための単純なコードです。
だから私はそれを構築しようとすると、Eclipseは私にエラーを与えます:
Type 'smatch' could not be resolved
また:
Type 'std::regex' could not be resolved
何が問題ですか ?
フラグ -std=c++0x を適切な場所 (プロパティ -> c/c++ ビルド -> その他) に追加しようとしましたが、何も起こりません。
多分私はそれを間違っていますか?
pthread のようにライブラリへのリンクを追加する必要があるかもしれません。