位置:首頁 > 高級語言 > C語言標準庫 > isspace() - C函數

isspace() - C函數

C庫函數int isspace(int c)檢查傳遞的字符是否是空白。

標準空白字符:

' '     (0x20)	space (SPC)
'	'	(0x09)	horizontal tab (TAB)
'
'	(0x0a)	newline (LF)
'v'	(0x0b)	vertical tab (VT)
'f'	(0x0c)	feed (FF)
'
'	(0x0d)	carriage return (CR)

聲明

以下是isspace()函數的聲明。

int isspace(int c);

參數

  • c -- 這是要檢查的字符。

返回值

這個函數返回一個非零值(true)如果c是一個空白字符,否則返回零(false)

例子

下麵的例子顯示使用isspace()函數的用法。

#include <stdio.h>
#include <ctype.h>

int main()
{
   int var1 = 't';
   int var2 = '1';
   int var3 = ' ';

   if( isspace(var1) )
   {
       printf("var1 = |%c| is a white-space character
", var1 );
   }
   else
   {
       printf("var1 = |%c| is not a white-space character
", var1 );
   }
   if( isspace(var2) )
   {
       printf("var2 = |%c| is a white-space character
", var2 );
   }
   else
   {
       printf("var2 = |%c| is not a white-space character
", var2 );
   }
   if( isspace(var3) )
   {
       printf("var3 = |%c| is a white-space character
", var3 );
   }
   else
   {
       printf("var3 = |%c| is not a white-space character
", var3 );
   }
   
   return(0);
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

var1 = |t| is not a white-space character
var2 = |1| is not a white-space character
var3 = | | is a white-space character