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

履歴 編集

function
<regex>

std::regex_error::code(C++11)

概要

エラーコードを取得する。

戻り値

コンストラクタで設定されたエラーコードを返す。

#include <regex>

int main()
{
  try {
    std::regex re("("); // 開きカッコに対応する閉じカッコがない正規表現を指定
  }
  catch (std::regex_error& e) {
    // エラーコードを取得
    std::regex_constants::error_type code = e.code();
  }
}

出力

バージョン

言語

  • C++11

処理系