|
noskipwsmanipulator function
<ios> ios_base& noskipws ( ios_base& str ); Do not skip whitespaces Clears the skipws format flag for the str stream.When the skipws format flag is not set, the extraction operation considers initial whitespace characters as valid content to be extracted. Tab spaces, carriage returns and blank spaces are all considered whitespaces. This flag can be set with the skipws manipulator. When this flag is set, as many initial whitespace characters as necessary are read and discarded from the stream until a non-whitespace character is found before every extraction operation. Notice that many extraction operations consider the whitespaces themselves as the terminating character, therfore, with the skipws flag disabled, some extraction operations may extract no characters at all from the stream. The skipws flag is set in standard streams on initialization. Parameters
Return ValueA reference to the stream object.Example
The execution of this example displays something similar to:
See also
|