isspace

isspace,是一種計算機用語,主要用於檢查參數c是否為空格字元。

基本介紹

  • 外文名:isspace
  • 相關函式:isgraph
  • 表頭檔案:#include<ctype.h>
  • 定義函式:int isspace(char c)
簡介,範例,

簡介

函式說明
檢查參數c是否為空格字元,也就是判斷是否為空格(' ')、水平定位字元
('\t')、歸位鍵('\r')、換行('\n')、垂直定位字元('\v')或翻頁('\f')的情況。
返回值
若參數c為空格字元,則返回TRUE,否則返回NULL(0)。
附加說明
此為宏定義,非真正函式。

範例

/*將字元串str[]中內含的空格字元找出,並顯示空格字元的ASCII碼*/
#include<ctype.h>#include<stdio.h>main(){inti;charstr[]="123c @# FD\tsP[e?\n";for(i=0;str[i]!=0;i++){if(isspace(str[i]))printf("str[%d] is a white-space character:%d\n",i,str[i]);}}
執行
str[4] is a white-space character:32
str[7] is a white-space character:32
str[10] is a white-space character:9 /* \t */
str[16] is a white-space character:10 /* \n */

相關詞條

熱門詞條

聯絡我們