[#bsl-basic_istringstream-get-051] = xref:bsl.adoc[bsl]::xref:bsl/basic_istringstream.adoc[basic_istringstream]::get :relfileprefix: ../../ :mrdocs: Extraction into another streambuf. == Synopsis Declared in `<bslstl_istringstream.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- __istream_type& get( __streambuf_type& __sb, char_type __delim); ---- == Description Characters are extracted and inserted into ___sb_ until one of the following happens: * the input sequence reaches EOF * insertion into the output buffer fails (in this case, the character that would have been inserted is not extracted) * the next character equals ___delim_ (in this case, the character is not extracted) * an exception occurs (and in this case is caught) If no characters are stored, failbit is set in the stream's error state. == Return Value *this == Parameters [cols="1,4"] |=== | Name| Description | *__sb* | A streambuf in which to store data. | *__delim* | A "stop" character. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#