Difference between revisions of "cpp/string"
(c -> c/core.) |
D41D8CD98F (Talk | contribs) (→See also) |
||
Line 67: | Line 67: | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | |||
{{dsc see c|c/string|Strings library|nomono=true}} | {{dsc see c|c/string|Strings library|nomono=true}} | ||
{{dsc end}} | {{dsc end}} | ||
{{langlinks|ar|de|es|fr|it|ja|pt|ru|zh}} | {{langlinks|ar|de|es|fr|it|ja|pt|ru|zh}} |
Revision as of 21:43, 17 September 2023
The C++ strings library includes support for three general types of strings:
- std::basic_string - a templated class designed to manipulate strings of any character type.
- std::basic_string_view (since C++17) - a lightweight non-owning read-only view into a subsequence of a string.
- Null-terminated strings - arrays of characters terminated by a special null character.
Contents |
std::basic_string
The templated class std::basic_string generalizes how sequences of characters are manipulated and stored. String creation, manipulation, and destruction are all handled by a convenient set of class methods and related functions.
Several specializations of std::basic_string are provided for commonly-used types:
Defined in header
<string> | |
Type | Definition |
std::string
|
std::basic_string<char> |
std::wstring
|
std::basic_string<wchar_t> |
std::u8string (since C++20)
|
std::basic_string<char8_t> |
std::u16string (since C++11)
|
std::basic_string<char16_t> |
std::u32string (since C++11)
|
std::basic_string<char32_t> |
std::basic_string_viewThe templated class std::basic_string_view provides a lightweight object that offers read-only access to a string or a part of a string using an interface similar to the interface of std::basic_string. Several specializations of std::basic_string_view are provided for commonly-used types:
|
(since C++17) |
Null-terminated strings
Null-terminated strings are arrays of characters that are terminated by a special null character. C++ provides functions to create, inspect, and modify null-terminated strings.
There are three types of null-terminated strings:
Additional support
std::char_traits
The string library also provides class template std::char_traits that defines types and functions for std::basic_string and std::basic_string_view(since C++17).
The following specializations are defined:
Defined in header <string>
|
||
template<> class char_traits<char>; |
||
template<> class char_traits<wchar_t>; |
||
template<> class char_traits<char8_t>; |
(since C++20) | |
template<> class char_traits<char16_t>; |
(since C++11) | |
template<> class char_traits<char32_t>; |
(since C++11) | |
Conversions and classification
The localizations library provides support for string conversions (e.g. std::wstring_convert or std::toupper) as well as functions that classify characters (e.g. std::isspace or std::isdigit).
See also
C documentation for Strings library
|