[#bsl-basic_istringstream-get-00] = xref:bsl.adoc[bsl]::xref:bsl/basic_istringstream.adoc[basic_istringstream]::get :relfileprefix: ../../ :mrdocs: Simple multiple‐character extraction. == Synopsis Declared in `<bslstl_istringstream.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- __istream_type& get( char_type* __s, streamsize __n, char_type __delim); ---- == Description Characters are extracted and stored into ___s_ until one of the following happens: * `__n‐1` characters are stored * the input sequence reaches EOF * the next character equals ___delim,_ in which case the character is not extracted If no characters are stored, failbit is set in the stream's error state. In any case, a null character is stored into the next location in the array. [NOTE] ==== This function is not overloaded on signed char and unsigned char. ==== == Return Value *this == Parameters [cols="1,4"] |=== | Name| Description | *__s* | Pointer to an array. | *__n* | Maximum number of characters to store in ___s._ | *__delim* | A "stop" character. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#