Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::strcoll

      From cppreference.com
      <cpp‎ |string‎ |byte
       
       
       
       
      Defined in header<cstring>
      int strcoll(constchar* lhs,constchar* rhs);

      Compares two null-terminated byte strings according to the current locale as defined by theLC_COLLATE category.

      Contents

      [edit]Parameters

      lhs, rhs - pointers to the null-terminated byte strings to compare

      [edit]Return value

      • Negative value iflhs isless than (precedes)rhs.
      • 0 iflhs isequal torhs.
      • Positive value iflhs isgreater than (follows)rhs.

      [edit]Notes

      Collation order is the dictionary order: the position of the letter in the national alphabet (itsequivalence class) has higher priority than its case or variant. Within an equivalence class, lowercase characters collate before their uppercase equivalents and locale-specific order may apply to the characters with diacritics. In some locales, groups of characters compare as singlecollation units. For example,"ch" in Czech follows"h" and precedes"i", and"dzs" in Hungarian follows"dz" and precedes"g".

      [edit]Example

      Run this code
      #include <clocale>#include <cstring>#include <iostream> int main(){std::setlocale(LC_COLLATE,"cs_CZ.utf8");// Alternatively, ISO-8859-2 (a.k.a. Latin-2)// may also work on some OS:// std::setlocale(LC_COLLATE, "cs_CZ.iso88592"); constchar* s1="hrnec";constchar* s2="chrt"; std::cout<<"In the Czech locale: ";if(std::strcoll(s1, s2)<0)std::cout<< s1<<" before "<< s2<<'\n';elsestd::cout<< s2<<" before "<< s1<<'\n'; std::cout<<"In lexicographical comparison: ";if(std::strcmp(s1, s2)<0)std::cout<< s1<<" before "<< s2<<'\n';elsestd::cout<< s2<<" before "<< s1<<'\n';}

      Output:

      In the Czech locale: hrnec before chrtIn lexicographical comparison: chrt before hrnec

      [edit]See also

      compares two wide strings in accordance to the current locale
      (function)[edit]
      [virtual]
      compares two strings using this facet's collation rules
      (virtual protected member function ofstd::collate<CharT>)[edit]
      transform a string so thatstrcmp would produce the same result asstrcoll
      (function)[edit]
      C documentation forstrcoll
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/string/byte/strcoll&oldid=160647"

      [8]ページ先頭

      ©2009-2025 Movatter.jp