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.
を使用しますstd::regex。次のコードで例外が発生します:
std::regex
try { regex rnl("\\b(sub)([^ ]*)"); } catch (regex_error& e) { cout << e.code() << endl; }
e.code()== 2、どのような問題があると思いますか\\b。どうすれば正しいものを作成できますregexか?
e.code()
\\b
regex