当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ isspace()用法及代码示例


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

isspace() 原型

int isspace(int ch);

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

  • 空格(0x20,'')
  • 换页(0x0c,'\f')
  • 换行(0x0a,'\n')
  • 回车 (0x0d, '\r')
  • 水平制表符 (0x09, '\t')
  • 垂直制表符(0x0b,'\v')

如果 ch 的值不能表示为 unsigned char 或不等于 EOF,则 isspace() 的行为未定义。

它在<cctype> 头文件中定义。

参数:

ch :要检查的字符。

返回:

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

示例:isspace() 函数的工作原理

#include <cctype>
#include <iostream>
#include <cstring>

using namespace std;

int main()
{
    char str[] = "<html>\n<head>\n\t<title>C++</title>\n</head>\n</html>";

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

    cout << "After removing whitespace characters" << endl;
    for (int i=0; i<strlen(str); i++)
    {
        if (!isspace(str[i]))
            cout << str[i];
    }
    
    return 0;
}

运行程序时,输出将是:

Before removing whitespace characters
<html>
<head>
	<title>C++</title>
<head>
<html>

After removing whitespace characters
<html><head><title>C++</title></head></html>

相关用法


注:本文由纯净天空筛选整理自 C++ isspace()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。