C語言中isalnum()函數和isalpha()函數的對比使用_C 語言

來源:互聯網
上載者:User

C語言isalnum()函數:判斷字元是否為英文字母或數字
標頭檔:

#include <ctype.h>

isalnum() 用來判斷一個字元是否為英文字母或數字,相當於 isalpha(c) || isdigit(c),其原型為:

  int isalnum(int c);

【參數】c 為需要檢測的字元。

【傳回值】若參數c 為字母或數字,若 c 為 0 ~ 9  a ~ z  A ~ Z 則返回非 0,否則返回 0。

注意,isalnum()為宏定義,非真正函數。

【執行個體】找出str 字串中為英文字母或數位字元。

#include <ctype.h>main(){  char str[] = "123c@#FDsP[e?";  int i;  for (i = 0; str[i] != 0; i++)    if(isalnum(str[i]))      printf("%c is an alphanumeric character\n", str[i]);}

輸出結果:

1 is an apphabetic character2 is an apphabetic character3 is an apphabetic characterc is an apphabetic characterF is an apphabetic characterD is an apphabetic characters is an apphabetic characterP is an apphabetic charactere is an apphabetic character

C語言isalpha()函數:判斷字元是否為英文字母
標頭檔:

#include <ctype.h>

isalpha() 用來判斷一個字元是否是英文字母,相當於 isupper(c)||islower(c),其原型為:

  int isalpha(int c);

【參數】c 為需要被檢測的字元。

【傳回值】若參數c 為英文字母(a ~ z  A ~ Z),則返回非 0 值,否則返回 0。

注意,isalpha() 為宏定義,非真正函數。

【執行個體】找出str 字串中為英文字母的字元。

#include <ctype.h>main(){  char str[] = "123c@#FDsP[e?";  int i;  for (i = 0; str[i] != 0; i++)    if(isalpha(str[i]))      printf("%c is an alphanumeric character\n", str[i]);}

執行結果:

c is an apphabetic characterF is an apphabetic characterD is an apphabetic characters is an apphabetic characterP is an apphabetic charactere is an apphabetic character

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.