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

履歴 編集

function
<regex>

std::regex_traits::length(C++11)

static std::size_t length(const char_type* p);

概要

文字列の長さを取得する。

戻り値

char_traits<char_type>::length(p)

#include <regex>
#include <iostream>

int main()
{
  std::size_t length = std::regex_traits<char>::length("hello");
  std::cout << length << std::endl;
}

出力

5

バージョン

言語

  • 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++: ??