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/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/617685.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Jmeter接口自动化03-JMeter的常用核心组件

p03 高清B站视频链接 由于JMeter涉及的组件数目很多&#xff0c;据不完全统计至少有110个&#xff0c;而其实只需要掌握20%的组件就可以完成80%甚至更多的日常工作了&#xff0c;所以接下来我们重点剖析使用最频繁的核心组件&#xff0c;如下图所示。只需要优先掌握这10个左右…

css——文字实现渐变色的两种方案

&#xff08;一&#xff09;通过设置color、background-image及background-clip实现文字颜色渐变 <template><span class"title">文字实现渐变色的两种方案</span> </template><style> .title {color: transparent;background-image:…

DartSDK下载

下载DartSDK(具有开发Dart命令行、服务器和非FlutterWeb应用程序所需的库和命令行工具(底层支持作用系统库)) 1.Homebrew环境 //brew --version 2.brew tap dart-lang/dart 3.brew install dart 修改host 下载成功 描述信息查看 AndroidStudio 引入配置 备注&#xff1a; …

OpenHarmony——基于HDF驱动框架构建的Display驱动模型

概述 功能简介 LCD&#xff08;Liquid Crystal Display&#xff09;驱动编程&#xff0c;通过对显示器上电、初始化显示器驱动IC&#xff08;Integrated Circuit&#xff09;内部寄存器等操作&#xff0c;使其可以正常工作。 基于HDF&#xff08;Hardware Driver Foundation…

使用Pygame库创建了一个窗口,并在窗口中加载了一个名为“ball.png“的图片,通过不断改变物体的位置,实现了一个简单的动画效果

import pygame import sys# 初始化Pygame pygame.init()# 创建窗口 screen pygame.display.set_mode((640, 480))# 加载图片 image pygame.image.load("ball.png")# 将物体初始位置设为屏幕左上角 x 0 y 0# 游戏循环 while True:# 处理事件for event in pygame.e…

python 语法

闭包 在函数嵌套的前提下&#xff0c;内部函数使用了外部函数的变量&#xff0c;并且外部函数返回了内部函数&#xff0c;我们把这个使用外部函数变量的内部函数称为闭包。 def outfunc(arg):def innerFunc(msg):print(f"<{msg}> {arg} <{msg}>")retu…

vue3表格编辑(数据回显)和删除功能实现

在Vue 3中&#xff0c;可以通过使用v-for指令来遍历数组&#xff0c;并在表格中显示数据。要实现表格的编辑和删除功能&#xff0c;可以使用动态绑定的方式来实现。 以下是一个示例代码&#xff0c;实现了一个简单的表格编辑和删除功能&#xff1a; <template><div&…

Ubuntu纯净服务器系统使用Nginx+uwsgi部署django项目

当前文章依赖最新的ubuntu-22.04.3-live-server-amd64服务器系统,python3-10版本,django为5.0版! 该服务器系统我们可以通过虚拟机来在本地安装,也可以使用云服务器,操作方式方法大同小异! 安装python的venv sudo apt install python3.10-venv 创建并激活虚拟环境 p…

JavaScript保留字和预定义的全局变量及函数汇总

保留字也称关键字&#xff0c;每种语言中都有该语言本身规定的一些关键字&#xff0c;这些关键字都是该语言的语法实现基础&#xff0c;JavaScript中规定了一些标识符作为现行版本的关键字或者将来版本中可能会用到的关键字&#xff0c;所以当我们定义标识符时就不能使用这些关…

Java:双缓冲队列

《程序员》&#xff1a;双缓冲队列就是冲着同步/互斥的开销来的。我们知道&#xff0c;在多个线程并发访问同一个资源的时候&#xff0c;需要特别注意线程的同步问题。稍稍不注意&#xff0c;哦活&#xff0c;程序结果不正确了。最经典的就是“银行取钱”的例子&#xff0c;想想…

七麦数据js逆向(补环境版)

本文目标地址如下&#xff0c;使用base64解码获得 aHR0cHM6Ly93d3cucWltYWkuY24vcmFuay9tYXJrZXRSYW5rL21hcmtldC82L2NhdGVnb3J5LzUvY29sbGVjdGlvbi9hbGwvZGF0ZS8yMDI0LTAxLTEy 本文逆向破解分为扣代码版和补环境版&#xff0c;扣代码版请看专栏另一篇文章 废话不多说了&#…

Cesium笔记 viewer控件隐藏

Cesium初始化后&#xff0c;场景中会有时间轴&#xff0c;动画&#xff0c;home等控件显示&#xff0c;需要将这些控件隐藏&#xff0c;如下&#xff1a; init() {let viewer new Cesium.Viewer("cesiumContainer", {fullscreenButton: false, // 隐藏界面右下角全…

“具身智能”浪潮中,达闼机器人的商业化“奇点”已然到来?

当前&#xff0c;人形机器人产业正在快速发展&#xff0c;而2023年必将会是载入史册的一年。 具体来看&#xff0c;2023年&#xff0c;AI技术大爆发&#xff0c;可在语言、视觉、运动控制、降低研发成本等多方面赋能人形机器人产业发展。与此同时&#xff0c;特斯拉、波士顿动…

【C++】C++11中的常见语法(下)

C11 一、可变参数模板1. 递归函数方式展开参数包2. 逗号表达式展开参数包3. STL容器中的 empalce 相关接口函数 二、lambda 表达式1. C98 中的一个例子2. 使用 lambda 表达式3. lambda 表达式语法&#xff08;1&#xff09;lambda 表达式各部分说明&#xff08;2&#xff09;捕…

1-Docker-基础

本文内容多处参考黑马程序员的公开资料&#xff0c;仅用来个人梳理&#xff0c;原资料地址&#xff1a;https://b11et3un53m.feishu.cn/wiki/MWQIw4Zvhil0I5ktPHwcoqZdnec Docker介绍 为什么要用Docker&#xff1f; 以Mysql安装为例&#xff0c;想要在Linux系统上安装Mysql&…

Mysql适配国产化数据库人大金仓冲突记录

1、mysql中查询中如果使用双引号&#xff0c;在人大金仓数据库中不支持&#xff0c;需改为单引号 例如&#xff1a; select 字段A&#xff0c;字段B&#xff0c;字段C from tableA where 字段A "1" 改为&#xff1a; select 字段A&#xff0c;字段B&#xff0c;字段…

c++简单做一个文件变长储存(自己封装字符串类)

c简单做一个文件变长储存 前言源码所有类头文件 .hClassStuMyStrcFile 所有文件的实现源码.cppclassstuMystrcFile 前言 用户信息写到文件是变长方式&#xff1b; 从文件上读取到内存&#xff0c;也是变长方式 用到了三个类&#xff1b; ** 用户信息类 ClassStu ** 自封装字符…

Vue+Element UI+Echarts

Vue文档 Vue.js - 渐进式 JavaScript 框架 | Vue.js (vuejs.org) 一个简单的基于vue.js的无缝滚动 vue-seamless-scroll (chenxuan0000.github.io) Element&#xff0c;一套为开发者、设计师和产品经理准备的基于 Vue 2.0 的桌面端组件库 Element - 网站快速成型工具 ECharts …

【C】volatile 关键字

目录 volatile1&#xff09;基本概念2&#xff09;用途&#xff1a;禁止编译器优化3&#xff09;总结 volatile 1&#xff09;基本概念 const是C语言的一个关键字。 const用于告诉编译器相应的变量可能会在程序的控制之外被修改&#xff0c;因此编译器不应该对其进行优化。 …

2024年AMC8往年真题练一练和答案详解(6),还有全真模拟题

今天是1月13日&#xff0c;2024年AMC8正式比赛已经倒计时了&#xff0c;昨天AMC主办方给所有参赛选手发了短信通知&#xff0c;关于模拟竞赛的操作方式和实际比赛的要求指南&#xff0c;大家一定要认真阅读&#xff0c;严格按指南操作&#xff0c;六分成长也会详细为大家解读和…