Convert a character sequence of the specified length excluding the terminating null character starting at the beginning of the specified characterString to a string object of the indicated return type. Use the bslma::Default::globalAllocator() to supply memory. (See the "Memory Allocation For a File‐Scope Strings" section in the component‐level documentation.)

Synopsis

Declared in <bslstl_string.h>

string
operator""_S(
    char const* characterString,
    std::size_t length);

Description

Example: ` using namespace bsl::string_literals; static const bsl::string g_str1 = "1230abc"_S; static const bsl::wstring g_str2 = L"1230abc"_S; `

Created with MrDocs