Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::regex_traits<CharT>::isctype

      From cppreference.com
      <cpp‎ |regex‎ |regex traits
       
       
       
      Regular expressions library
      Classes
      (C++11)
      Algorithms
      Iterators
      Exceptions
      Traits
      Constants
      (C++11)
      Regex Grammar
       
       
      bool isctype( CharT c, char_class_type f)const;

      Determines whether the characterc belongs to the character class identified byf, which, in turn, is a value returned bylookup_classname() or a bitwise OR of several such values.

      The version of this function provided in the standard library specializations ofstd::regex_traits does the following:

      1) First convertsf to a valuem of typestd::ctype_base::mask.
      For eachstd::ctype category listed in the table in the pagelookup_classname(), if the bits inf corresponding to the category are set, the corresponding bits inm will also be set.
      2) Then attempts to classify the character in the imbued locale by callingstd::use_facet<std::ctype<CharT>>(getloc()).is(m, c).
      • If that returnstrue,isctype() will also returntrue.
      • Otherwise, ifc equals'_', andf includes the result of callinglookup_classname() for the character class[:w:],true is returned, otherwisefalse is returned.

      Contents

      [edit]Parameters

      c - the character to classify
      f - the bitmask obtained from one or several calls tolookup_classname()

      [edit]Return value

      true ifc is classified byf,false otherwise.

      [edit]Example

      Run this code
      #include <iostream>#include <regex>#include <string> int main(){std::regex_traits<char> t;std::string str_alnum="alnum";auto a= t.lookup_classname(str_alnum.begin(), str_alnum.end());std::string str_w="w";// [:w:] is [:alnum:] plus '_'auto w= t.lookup_classname(str_w.begin(), str_w.end());std::cout<<std::boolalpha<< t.isctype('A', w)<<' '<< t.isctype('A', a)<<'\n'<< t.isctype('_', w)<<' '<< t.isctype('_', a)<<'\n'<< t.isctype(' ', w)<<' '<< t.isctype(' ', a)<<'\n';}

      Output:

      true truetrue falsefalse false

      Demonstrates a custom regex traits implementation oflookup_classname() /isctype():

      Run this code
      #include <cwctype>#include <iostream>#include <locale>#include <regex> // This custom regex traits uses wctype/iswctype to implement lookup_classname/isctype.struct wctype_traits:std::regex_traits<wchar_t>{using char_class_type=std::wctype_t; template<class It>    char_class_type lookup_classname(It first, It last,bool=false)const{returnstd::wctype(std::string(first, last).c_str());} bool isctype(wchar_t c, char_class_type f)const{returnstd::iswctype(c, f);}}; int main(){std::locale::global(std::locale("ja_JP.utf8"));std::wcout.sync_with_stdio(false);std::wcout.imbue(std::locale()); std::wsmatch m;std::wstring in= L"風の谷のナウシカ";// matches all characters (they are classified as alnum)std::regex_search(in, m,std::wregex(L"([[:alnum:]]+)"));std::wcout<<"alnums: "<< m[1]<<'\n';// prints "風の谷のナウシカ"// matches only the katakanastd::regex_search(in, m,std::basic_regex<wchar_t, wctype_traits>(L"([[:jkata:]]+)"));std::wcout<<"katakana: "<< m[1]<<'\n';// prints "ナウシカ"}

      Output:

      alnums: 風の谷のナウシカkatakana: ナウシカ

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 2018C++11the value ofm was unspecifiedmatcheslookup_classname()'s minimal support

      [edit]See also

      gets a character class by name
      (public member function)[edit]
      [virtual]
      classifies a character or a character sequence
      (virtual protected member function ofstd::ctype<CharT>)[edit]
      classifies a wide character according to the specifiedLC_CTYPE category
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/regex/regex_traits/isctype&oldid=161049"

      [8]ページ先頭

      ©2009-2026 Movatter.jp