boost::regex_search
C++ で大文字と小文字を区別しないフラグまたは定数をどのように使用しますか?
簡単な例を投稿してください。
ありがとう!
boost::regex_search
C++ で大文字と小文字を区別しないフラグまたは定数をどのように使用しますか?
簡単な例を投稿してください。
ありがとう!
このようなものが必要です
boost::regex regex("your expression here", boost::regex::icase);
boost::smatch what;
string mystring;
bool search_result = boost::regex_search(mystring.begin(),mystring.end(), what, regex);
または、次のようなもの (設定なしboost::regex::icase
):
boost::regex regex("(?i)expression");
boost::smatch what;
string mystring;
bool search_result = boost::regex_search(mystring.begin(),mystring.end(), what, regex);