[#BloombergLP-bslstl-operator_rshift] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::operator>> :relfileprefix: ../../ :mrdocs: Read a quoted string from the specified `input` stream into `object`. == Synopsis Declared in `<bslstl_iomanip.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class t_CHAR_TYPE, class t_CHAR_TRAITS, class t_ALLOC> std::basic_istream<t_CHAR_TYPE, t_CHAR_TRAITS>& operator>>( std::basic_istream<t_CHAR_TYPE, t_CHAR_TRAITS>& input, xref:BloombergLP/bslstl/IoManip_QuotedStringFormatter.adoc[IoManip_QuotedStringFormatter<t_CHAR_TYPE, t_CHAR_TRAITS, t_ALLOC>] const& object); ---- == Description Note that the `object` here is `const` because the `QuotedStringFormatter` is designed to be returned as a temporary object from `bsl::quoted`, serving as a proxy for the underlying string. == Return Value reference to the input stream == Parameters [cols="1,4"] |=== | Name| Description | *input* | input stream from which to extract a quoted string | *object* | formatter providing the destination string and quote style |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#