kennen:lib:isspace
Inhaltsverzeichnis
isspace()
#include
<cctype>
int isspace (int c)
Ist c
ein Leerzeichen, Tabulator oder Zeilenvorschub ("white space")?
Parameter
c | Zeichen |
Ergebnis
Rückgabewert: ungleich 0, falls das Zeichen dieser Gruppe angehört.
Siehe auch
<locale>, isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isupper(), isxdigit().
Beispiel
- isspace.cpp
#include <cctype> #include <iostream> using namespace std; int main() { cout << "Leerraumzeichen: \n"; for (int i=0; i<256; ++i) { if (isspace(i)) { cout << i << ' ' << char(i) << '\n'; } } }
kennen/lib/isspace.txt · Zuletzt geändert: 2019-11-20 15:42 von 127.0.0.1