2

regex_search関数が期待どおりに動作していません。

#include <iostream>
#include <regex>
#include <string>

using namespace std;

int main()
{
    string str = "Hello world";
    const regex rx("Hello");
    cout << regex_search(str.begin(), str.end(), rx) << endl;
    return 0;
}

出力は

0

どうしたの?

4

1 に答える 1