當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。