最終更新日時(UTC):
が更新

履歴 編集

function
<regex>

std::basic_regex::デストラクタ(C++11)

~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;

  // スコープの終わりで破棄される。
}

出力

true

バージョン

言語

  • C++11

処理系