📌  相关文章
📜  C++ isspace()

📅  最后修改于: 2020-09-25 07:07:03             🧑  作者: Mango

C++中的isspace() 函数检查给定字符是否为空格字符 。

isspace()原型

int isspace(int ch);

isspace() 函数检查ch是否为按当前C语言环境分类的空白字符 。默认情况下,以下字符是空格字符:

如果ch的值不能表示为无符号字符或不等于EOF,则isspace()的行为是不确定的。

它在头文件中定义。

isspace()参数

ch :要检查的字符 。

isspace()返回值

如果ch是空格字符 ,则isspace() 函数返回非零值,否则返回零。

示例:isspace() 函数的工作方式

#include 
#include 
#include 

using namespace std;

int main()
{
    char str[] = "\n\n\tC++\n\n";

    cout << "Before removing whitespace characters" << endl;
    cout << str << endl << endl;

    cout << "After removing whitespace characters" << endl;
    for (int i=0; i

运行该程序时,输出为:

Before removing whitespace characters


    C++



After removing whitespace characters
C++