C语言ctype.h头文件字符测试函数

2024-01-13 10:20

本文主要是介绍C语言ctype.h头文件字符测试函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

C/C++语言ctype.h头文件字符测试函数

C有一系列专门处理字符的函数,在ctype.h中包含了这些函数的原型,当然在C++中,这些函数被放在了cctype中。

作用

这些函数接收一个字符作为参数,如果该字符属于某个特殊的类别,就返回一个真值(非零值),否则,返回假值。

要注意的是,被传进的参数应该为整数类型(ASCLL码形式),如果你传递进去了一个浮点数,那么它将会被转换为整数。

字符类型

可以传入的字符包括两种类型:

  • 可打印字符(Printable Characters):这类字符能够显示在终端上。
  • 控制字符(Control Characters):这类字符通常是为了执行特定的操作而存在的

库函数

Chinese:

序号函数描述返回值
1.isalnum()这个函数用来判断字符是否是字母或数字如果传入的参数不是字母或数字,返回0。如果传入的参数是字母或数字,返回非零值。
2.isalpha()这个函数用来判断字符是否是字母如果传入的参数不是字母,返回0。如果传入的参数是字母,返回非零值。
3.isblank()这个函数用来判断字符是否是空格如果传入的参数不是空格,返回0。如果传入的参数是空格,返回非零值。
4.iscntrl()这个函数用来判断字符是否是控制字符(\n, \b, \t, \r)。如果传入的参数不是控制字符,返回0。如果传入的参数是控制字符,返回非零值。
5.isdigit()这个函数用来判断字符是否是数字。如果传入的参数不是数字,返回0。如果传入的参数是数字,返回非零值。
6.islower()这个函数用来判断字符是否是小写字母。如果传入的参数不是小写字母,返回0。如果传入的参数是小写字母,返回非零值。
7.isprint()这个函数用来判断字符是否是可打印字符。如果传入的参数不是可打印字符,返回0。如果传入的参数是可打印字符,返回非零值。
8.ispunct()这个函数用来判断字符是否是标点符号(既不是字母或数字也不是空格的字符)。如果传入的参数不是标点符号,返回0。如果传入的参数是标点符号,返回非零值。
9.isspace()这个函数用来判断字符是否是空白字符。如果传入的参数是空白字符,返回非零值。如果传入的参数不是空白字符,返回0。
10.isupper()这个函数用来判断字符是否是大写字母。如果传入的参数是大写字母,返回非零值。如果传入的参数不是大写字母,返回0。
11.isxdigit()这个函数用来判断字符是否是十六进制数字。如果传入的参数是十六进制数字,返回非零值。如果传入的参数不是十六进制数字,返回0。
12.tolower()这个函数用来把大写字母转换成小写字母。返回对应的小写字母。
13.toupper()这个函数用来把小写字母转换成大写字母。返回对应的大写字母。

English:

S.NoFunctionDescriptionReturn Values
1.isalnum()This function identifies the alphanumeric charactersReturns 0 if the passed argument is non – alphanumeric character. Returns non zero value if the passed argument is alphanumeric character.
2.isalpha()This function identifies the alphabets from other charactersReturns 0 if the passed argument is not an alphabet. Returns non zero value if the passed argument is an alphabet.
3.isblank()This function identifies the blank spaces from other charactersReturns 0 if the passed argument is not a blank space. Returns nonzero value if the passed argument is a blank space.
4.iscntrl()This function identifies the control characters(\n, \b, \t, \r).Returns 0 if the passed argument is not a control character. Returns nonzero value if the passed argument is a control character.
5.isdigit()This function identifies numbers in character.Returns 0 if the passed argument is not a number. Returns nonzero value if the passed argument is a number.
6.islower()This function identifies the lowercase alphabets.Returns 0 if the passed argument is not a lowercase alphabet. Returns nonzero value if the passed argument is a lowercase alphabet.
7.isprint()This function identifies the printable characters.Returns 0 if the passed argument is a non printable character. Returns nonzero value if the passed argument is a printable character.
8.ispunct()This function identifies punctuation characters (characters that are neither alphanumeric nor space).Returns 0 if the passed argument is not a punctuation character. Returns nonzero value if the passed argument is a punctuation character.
9.isspace()This function identifies white-space characters.Returns 0 if the passed argument is not a white-space character. Returns nonzero value if the passed argument is a white-space character.
10.isupper()This function identifies the uppercase alphabets.Returns 0 if the passed argument is not an uppercase alphabet.Returns nonzero value if the passed argument is an uppercase alphabet.
11.isxdigit()This function checks whether the argument is a hexadecimal digit.Returns 0 if the argument is not a hexadecimal digit, returns a nonzero value if it is.
12.tolower()This function converts an uppercase letter to a lowercase letter.Returns the lowercase letter corresponding to the uppercase letter.
13.toupper()This function converts a lowercase letter to an uppercase letter.Returns the uppercase letter corresponding to the lowercase letter.

下面的内容是一些例子:

示例1、以下程序识别字母、数字的数量

#include <stdio.h> 
//头文件
#include <ctype.h> void identify_alpha_numeric(char a[]) 
{ int count_alpha = 0, count_digit = 0; for (int i = 0; a[i] != '\0'; i++) { // 检查这个字符是不是字母if (isalpha(a[i])) count_alpha++; // 检查这个字符是不是数字 if (isdigit(a[i])) count_digit++; } printf("The number of alphabets are %d\n", count_alpha); printf("The number of digits are %d", count_digit); 
} int main() 
{ // 字符串初始化char a[] = "Hi 1234, "" Welcome to GeeksForGeeks"; identify_alpha_numeric(a); 
} 

OUTPUT:

The number of alphabets are 24
The number of digits are 4

示例2、以下程序识别大写和小写字母的数量并将大写字母转换为小写字母:

#include <stdio.h> // 头文件
#include <ctype.h> char* identify_convert_ul(char a[]) 
{ int count_upper = 0, count_lower = 0; for (int i = 0; a[i] != '\0'; i++) { // 检查大写字母 if (isupper(a[i])) { count_upper++; a[i] = tolower(a[i]); } //  检查小写字母else if (islower(a[i])) { count_lower++; a[i] = toupper(a[i]); } } printf("No. of uppercase characters are %d\n", count_upper); printf("No. of lowercase characters are %d", count_lower); return a; 
} int main() 
{ // 字符串初始化 char a[] = "Hi, Welcome to GeeksForGeeks"; char* p; p = identify_convert_ul(a); printf("%s", p); 
} 

OUTPUT:

No. of uppercase alphabets are 5
No. of lowercase alphabets are 19
hI, wELCOME TO gEEKSfORgEEKS

示例 3:以下程序在新行中打印每个单词:

#include <stdio.h> // 头文件
#include <ctype.h> char* print_word(char a[]) 
{ for (int i = 0; a[i] != '\0'; i++) { // 替换空格为换行符'\n'if (isblank(a[i])) a[i] = '\n'; } return a; 
} 
int main() 
{ // 字符串初始化char a[] = "Hello Everyone."" Welcome to GeeksForGeeks portal. "; char* p; p = print_word(a); printf("%s", p); 
} 

OUTPUT:

Hello
Everyone.
Welcome
to
GeeksForGeeks
portal.

参考文献:
https://www.geeksforgeeks.org/ctype-hcctype-library-in-c-c-with-examples/

这篇关于C语言ctype.h头文件字符测试函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/601127

相关文章

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

MiniGPT-3D, 首个高效的3D点云大语言模型,仅需一张RTX3090显卡,训练一天时间,已开源

项目主页:https://tangyuan96.github.io/minigpt_3d_project_page/ 代码:https://github.com/TangYuan96/MiniGPT-3D 论文:https://arxiv.org/pdf/2405.01413 MiniGPT-3D在多个任务上取得了SoTA,被ACM MM2024接收,只拥有47.8M的可训练参数,在一张RTX

如何确定 Go 语言中 HTTP 连接池的最佳参数?

确定 Go 语言中 HTTP 连接池的最佳参数可以通过以下几种方式: 一、分析应用场景和需求 并发请求量: 确定应用程序在特定时间段内可能同时发起的 HTTP 请求数量。如果并发请求量很高,需要设置较大的连接池参数以满足需求。例如,对于一个高并发的 Web 服务,可能同时有数百个请求在处理,此时需要较大的连接池大小。可以通过压力测试工具模拟高并发场景,观察系统在不同并发请求下的性能表现,从而

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C语言指针入门 《C语言非常道》

C语言指针入门 《C语言非常道》 作为一个程序员,我接触 C 语言有十年了。有的朋友让我推荐 C 语言的参考书,我不敢乱推荐,尤其是国内作者写的书,往往七拼八凑,漏洞百出。 但是,李忠老师的《C语言非常道》值得一读。对了,李老师有个官网,网址是: 李忠老师官网 最棒的是,有配套的教学视频,可以试看。 试看点这里 接下来言归正传,讲解指针。以下内容很多都参考了李忠老师的《C语言非

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

C 语言的基本数据类型

C 语言的基本数据类型 注:本文面向 C 语言初学者,如果你是熟手,那就不用看了。 有人问我,char、short、int、long、float、double 等这些关键字到底是什么意思,如果说他们是数据类型的话,那么为啥有这么多数据类型呢? 如果写了一句: int a; 那么执行的时候在内存中会有什么变化呢? 橡皮泥大家都玩过吧,一般你买橡皮泥的时候,店家会赠送一些模板。 上

linux中使用rust语言在不同进程之间通信

第一种:使用mmap映射相同文件 fn main() {let pid = std::process::id();println!(