Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここで一致する必要があることは明らかですが、このコードは依然としてfalseを返します。
#include <iostream> #include <boost/regex.hpp> using namespace std; using namespace boost; int main() { cout << regex_match("some text", regex("text")) << endl; }
regex_match指定されたすべての文字シーケンスと一致する必要があります。regex_search代わりに試してください。
regex_match
regex_search