About 88 results
Open links in new tab
  1. std::basic_string - cppreference.com

    Iterator invalidation References, pointers, and iterators referring to the elements of a basic_string may be invalidated by any standard …

  2. Strings library - cppreference.com

    The text processing library provides support for localizations, string conversions (e.g. std::toupper), character classification functions …

  3. C++ reference - cppreference.com

    Strings library basic_string − char_traits basic_string_view (C++17) Text processing library Primitive numeric conversions (C++17) …

  4. Standard library header <string> - cppreference.com

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

  5. std::basic_string<CharT,Traits,Allocator>:: - cppreference.com

    Constructs new string from a variety of data sources and optionally using user supplied allocator alloc.

  6. Strings library - cppreference.com

    Null-terminated byte string Null-terminated multibyte string Null-terminated wide string See also C++ documentation for Strings library

  7. std::to_string - cppreference.com

    Return value A string holding the converted value. Exceptions May throw std::bad_alloc from the std::string constructor. Notes With …

  8. std::basic_string<CharT,Traits,Allocator>:: - cppreference.com

    Return value String containing the substring [pos, pos + count) or [pos, size ()). Exceptions std::out_of_range if pos > size(). If an …

  9. String literal - cppreference.com

    Raw string literals Raw string literals are string literals with a prefix containing R (syntaxes (2,4,6,8,10)). They do not escape any …

  10. std::basic_string<CharT,Traits,Allocator>:: - cppreference.com

    3) Finds the first substring equal to the character string pointed to by s. The length of the string is determined by the first null …