skipws

Cause spaces to not be read by the input stream.

ios_base& skipws(
   ios_base& _Str
);

Parameters

  • _Str
    A reference to an object of type ios_base, or to a type that inherits from ios_base.

Return Value

A reference to the object from which _Str is derived.

Remarks

By default, skipws is in effect. noskipws will cause spaces to be read from the input stream.

The manipulator effectively calls _Str.setf(ios_base::skipws), and then returns _Str.

Example

#include <iostream>
#include <string>

int main( ) 
{
   using namespace std;
   char s1, s2, s3;
   cout << "Enter three characters: ";
   cin >> skipws >> s1 >> s2 >> s3;
   cout << "." << s1  << "." << endl;
   cout << "." << s2 << "." << endl;
   cout << "." << s3 << "." << endl;
}
  1 2 3

FakePre-b9c478654a5c48fabf157919b19626aa-adf9826bc1c74adb8edef16e6958572e

Requirements

Header: <ios>

Namespace: std

See Also

Reference

iostream Programming

iostreams Conventions

Other Resources

<ios> Members