今天学习了c语言的一些库函数用法。比如:strcpy(),strlen(),strchr(),strcmp(),strcat(),strstr()。下面是我写的一些代码和结果。1.strlen#include<stdio.h>
#include<string.h>
intmain()
{
chara[10]="12345";
printf("%d\n",strlen(a));
system("pause");
r..
分类:
其他好文 时间:
2015-12-18 19:08:24
阅读次数:
174
1.strcat<两个字符串连接函数>2.strlwr<将字符串中大写字母转化成小写字母>3.strupr<将字符串中小写字母转化成大写字母>4.部分函数实现。<strcat,strset,strstr,strchr>1.strcat函数实现自己连接自己此方法不会实现自己给自己连接,会出现死循环。原因..
分类:
其他好文 时间:
2015-11-27 01:17:35
阅读次数:
165
头文件:#include<string.h>strchr()用来查找某字符在字符串中首次出现的位置,其一般形式型为:strchr(str,c)【参数】str为要查找的字符串,c为要查找的字符。strchr()将会找出str字符串中第一次出现的字符c的地址,然后将该地址返回。注意:字符串str的结束标志NULL也..
分类:
其他好文 时间:
2015-11-06 07:19:34
阅读次数:
130
发现1.单字符切割strchr:查找字符c在字符串string中首次出现的位置,NULL结束符包括在当中返回一个指针,指向字符c在字符串string中首次出现的位置,若没查找到,则返回NULLstrrchr:查找字符c在字符串string中最后一次出现的位置,反序搜索,包括NULL结束符返回一个指针...
分类:
其他好文 时间:
2015-08-16 09:20:45
阅读次数:
113
字符查找函数strchr
char *mystrchr(const char *str, const char c)
{
char *p = NULL;
for (char*newp = str; *newp != '\0'; newp++)
{
if (*newp==c)
{
p = newp;//一个一个的查找
break;
}
}
return p;
}
...
分类:
其他好文 时间:
2015-08-16 02:07:40
阅读次数:
139
1、 字符串输出
Echo()输出一个或多个字符串
Print()输出字符串
Printf()格式化输出字符串
2、 字符串的截取
Substr()对字符串进行指定数量的截取。
Substr(对象,开始位置(从0开始),长度)
Strchr()strstr别名,查找一个字符串在另一个字符串第一次出现,返回字符串到结尾
strchr(对象,查找的字符)
...
分类:
其他好文 时间:
2015-08-11 01:27:50
阅读次数:
127
strpos() ---返回字符串在另一字符串中首次出现的位置strrpos() ---查找字符串在另一字符串中最后出现的位置strchr() === strstr()strrchr()strtr() ---替换字符(容易混乱strstr())str_replace()strlen()mb_...
分类:
Web程序 时间:
2015-08-06 20:08:13
阅读次数:
146
看到next_permutation好像也能过╮(╯▽╰)╭这题学习点:1.建图做映射2.通过定序枚举保证字典序最小3.strtok,sscanf,strchr等函数又复习了一遍,尽管程序中没有实际用上4.剪枝,或者回溯#includeusing namespace std;int G[8][8],...
分类:
其他好文 时间:
2015-07-08 00:30:43
阅读次数:
147
// 模拟实现strchr函数,功能:在一个字符串中查找一个字符第一次出现的位置,如果没有出现返回NULL
#include
#include
char const* my_strchr(char const *p,char c)
{
assert(p != NULL);
while (*p)
{
if (*p == c)
return p;
else
p++;
...
分类:
编程语言 时间:
2015-07-02 12:18:02
阅读次数:
135
//模拟实现strchr函数.即在一个字符串中查找一个字符第一次出现的位置并返回
#include
//#include
#include
char* my_strchr(char *dst, char src)
{
assert(dst);
while (*dst != '\0')
{
if (*dst == src)
return dst;
dst++;
}
re...
分类:
编程语言 时间:
2015-07-02 10:04:18
阅读次数:
113