字符函数和字符串函数


在编程的过程中,我们经常要处理字符和字符串,为了方便操作字符和字符串,C语言标准库中提供了一系列库函数,本文将为大家简单介绍这些函数。

字符分类函数

C语言中有一系列的函数是专们做字符分类的,也就是⼀个字符是属于什么类型的字符的。
这些函数的使用都需要包含一个头文件是ctype.h

函数参数符合下面条件则返回真
iscntrl任何控制字符
isspace空白字符:空格’ ‘,换页’\f’,换行’\n’ ,回车’\r’,制表符’\t’或垂直制表符’\v’
isdigit十进制数字: ‘0’~‘9’
idxdigit十六进制数字:‘0’~‘9’ 和 ‘a’~‘f’
islower小写字母:a~z
isupper大写字母:A~Z
isalpha字母:a~z 或 A~Z
isalnum字母或数字:a~z 或 A~Z 或 0~9
ispunct标点符号,任何不属于数字或者字母的图形字符(可打印)
isgraph任何图形字符
isprint任何可打印字符,包括图形字符和空白字符

字符转换函数

C语言提供了2个字符转换函数:

函数作用
int tolower ( int c )将参数传进去的大写字母转小写
int toupper ( int c )将参数传进去的小写字母转大写

strlen的使用和模拟实现

size_t strlen ( const char * str )
字符串以\0作为结束标志,strlen函数返回字符串中\0之前的字符个数(不包含\0)。
参数指向的字符串必须要以\0结束。
注意函数的返回值为size_t,是无符号的(运算时要注意)
strlen的使用

#include <stdio.h>
#include <string.h>
int main()
 {
 	const char* str1 = "abcdef";
 	const char* str2 = "bbb";
 	if(strlen(str2)-strlen(str1)>0)
 	{
 		printf("str2>str1\n");
 	} 
	else
	{
 		printf("srt1>str2\n");
 	}
 	return 0;
 }

strlen的模拟实现:

 //方法一:计数器⽅式
int my_strlen(const char * str)
	{
	int count = 0;
	assert(str);
   while(*str)
	{
		count++;
		str++;
	}
	return count;
}
 //方法二:指针-指针的⽅式
int my_strlen(char *s)
{
	assert(str);
	char *p = s;
	while(*p != ‘\0)
		p++;
	return p-s;
}
//方法三:不创建临时变量计数器
int my_strlen(const char * str)
{
	assert(str);
	if(*str == '\0')
		return 0;
    else
		return 1+my_strlen(str+1);
}

strcpy的使用和模拟实现

char* strcpy(char * destination, const char * source )
CopiestheCstringpointedbysourceintothearraypointedbydestination, including the
terminating null character (and stopping at that point).
源字符串必须以\0 结束。
目标空间必须足够大,以确保能存放源字符串。
⽬标空间必须可修改。
strcpy的模拟实现:

char* my_strcpy(char *dest, const char*src)
{        
  char *ret = dest;
  assert(dest != NULL);
  assert(src != NULL);
  while((*dest++ = *src++))
  {
  	;
  }
  return ret;
}

strcat的使用和模拟实现

Appendsacopyofthesourcestringtothedestinationstring. Theterminating null character
in destination is overwritten by the first character of source, and a null-character is included
at the endofthenewstringformedbytheconcatenationofbothindestination.
源字符串必须以\0 结束。
目标字符串中也得有\0,否则没办法知道追加从哪里开始。
目标空间必须有足够的大,能容纳下源字符串的内容。
目标空间必须可修改。
strcat的模拟实现

char *my_strcat(char *dest, const char*src)
{
 	char *ret = dest;
 	assert(dest != NULL);
 	assert(src != NULL);
  	while(*dest)
 	{
 		dest++;
 	}
 	while((*dest++ = *src++))
 	{
 		;
 	}
 	return ret;
}

strcmp的使用和模拟实现

Thisfunctionstarts comparing the first character of each string. If they are equal to each
other, it continues with the following pairs until the characters differ or until a terminating
null-character is reached.
标准规定:
第⼀个字符串大于第⼆个字符串,则返回大于0的数字
第⼀个字符串等于第⼆个字符串,则返回0
第⼀个字符串小于第⼆个字符串,则返回小于0的数字
strcmp的模拟实现

int my_strcmp (const char * str1, const char * str2)
 {
 	int ret = 0 ;
 	assert(str1 != NULL);
 	assert(str2 != NULL);
 	while(*str1 == *str2)
 	{
 		if(*str1 == '\0')
 		return 0;
 		str1++;
 		str2++;
 	}
 	return *str1-*str2;
 }

strncpy的使用

char * strncpy ( char * destination, const char * source, size_t num )
Copiesthefirst numcharactersofsourcetodestination. If the end of the source C string
(which is signaled by a null-character) is found before num characters have been copied,
destination is padded with zeros until a total of num characters have been written to it.
拷贝num个字符从源字符串到目标空间。
如果源字符串的长度小于num,则拷贝完源字符串之后,在目标的后边追加0,直到num个。

strncat的使用

char * strncat ( char * destination, const char * source, size_t num )

Appends the first num characters of source to destination, plus a terminating null-character.(将source指向字符串的前num个字符追加到destination指向的字符串末尾,再追加⼀个\0字符)
If the length of the C string in source is less than num,only the content up to the terminating null-character is copied.(如果source 指向的字符串的长度小于num的时候,只会将字符串中到\0的内容追加到destination指向的字符串末尾)。

/* strncat example */
 #include <stdio.h>
 #include <string.h>
 int main ()
 {
	char str1[20];
 	char str2[20];
 	strcpy (str1,"To be ");
 	strcpy (str2,"or not to be");
 	strncat (str1, str2, 6);
 	printf("%s\n", str1);
 	return 0;
 }

strncmp的使用

int strncmp ( const char * str1, const char * str2, size_t num )
比较str1和str2的前num个字符,如果相等就继续往后比较,最多比较num个字母,如果提前发现不以样,就提前结束,大的字符所在的字符串大于另外⼀个。如果num个字符都相等,就是相等返回0.

strstr的使用和模拟实现

char * strstr ( const char * str1, const char * str2)
Returns a pointer to the first occurrence of str2 in str1, or a null pointer if str2 is not part of str1.(函数返回字符串str2在字符串str1中第⼀次出现的位置)。
The matching process does not include the terminating null-characters, but it stops there.(字符
串的比较匹配不包含\0,以\0作为结束标志)。

 /* strstr example */
 #include <stdio.h>
 #include <string.h>
 int main ()
 {
 	char str[] ="This is a simple string";
 	char * pch;
 	pch = strstr (str,"simple");
 	strncpy (pch,"sample",6);
 	printf("%s\n", str);
 	return 0;
 }

strstr的模拟实现

char *  strstr (const char * str1, const char * str2)
 {
        char *cp = (char *) str1;
        char *s1, *s2;
        if ( !*str2 )
            return((char *)str1);
        while (*cp)
        {
                s1 = cp;
                s2 = (char *) str2;
                while ( *s1 && *s2 && !(*s1-*s2) )
                        s1++, s2++;
                if (!*s2)
                        return(cp);
                cp++;
        }
        return(NULL);
 }

strtok的使用

char * strtok ( char * str, const char * sep)
sep参数指向一个字符串,定义了用作分隔符的字符集合。
第一个参数指定一个字符串,它包含了0个或者多个由sep字符串中一个或者多个分隔符分割的标记。
strtok函数找到str中的下⼀个标记,并将其用\0结尾,返回一个指向这个标记的指针。(注:strtok函数会改变被操作的字符串,所以在使用strtok函数切分的字符串⼀般都是临时拷贝的内容并且可修改。)
strtok函数的第一个参数不为NULL,函数将找到str中第⼀个标记,strtok函数将保存它在字符串中的位置。
strtok函数的第一个参数为NULL ,函数将在同一个字符串中被保存的位置开始,查找下一个标记。
如果字符串中不存在更多的标记,则返回NULL指针。

#include <stdio.h>
#include <string.h>
 int main()
 {
 	char arr[] = "192.168.6.111";
 	char* sep = ".";
 	char* str = NULL;
 	for (str = strtok(arr, sep); str != NULL; str = strtok(NULL, sep))
 	{
 		printf("%s\n", str);
 	}
 	return 0;
 }
  • 26
    点赞
  • 28
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值