• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <regex>

    std::sub_match::str

    string_type str() const;
    

    概要

    マッチした文字列を string_type 型で返す。キャストと同じ。

    戻り値

    matched ? string_type(first, second) : string_type()

    #include <iostream>
    #include <regex>
    
    int main()
    {
      const char s[] = "123";
      const std::regex re(R"(\d+)");
      std::cmatch m;
      if (std::regex_search(s, m, re)) {
        std::csub_match sub = m[0];
        if (sub.matched) {
          std::cout << '\'' << sub.str() << '\'' << std::endl;
          sub.matched = false;
          std::cout << '\'' << sub.str() << '\'' << std::endl;
        } else {
          std::cout << "not participate" << std::endl;
        }
      } else {
        std::cout << "not match" << std::endl;
      }
    }
    

    出力

    '123'
    ''
    

    バージョン

    言語

    • C++11

    処理系

    • Clang: 3.0 , 3.1 , 3.2 , 3.3 , 3.4 , 3.5 , 3.6
    • GCC: 4.9.0 , 4.9.1 , 5.0.0
    • ICC: ??
    • Visual C++: ??