- regex[meta header]
- std[meta namespace]
- basic_regex[meta class]
- function[meta id-type]
- cpp11[meta cpp]
~basic_regex();正規表現オブジェクトを破棄する。
正規表現オブジェクトを破棄する。
#include <iostream>
#include <regex>
int main()
{
const char s[] = " abc ";
std::cout << std::boolalpha;
const std::regex re("ABC", std::regex_constants::icase);
std::cout << std::regex_search(s, re) << std::endl;
// スコープの終わりで破棄される。
}- std::regex_search[link ../regex_search.md]
- std::regex_constants::icase[link ../regex_constants/syntax_option_type.md]
true
- C++11
- Clang: 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6
- GCC: 4.9.0, 4.9.1, 4.9.2, 5.0.0
- ICC: ??
- Visual C++: ??