常用函数如下:strlen 求字符串长度strcmp 比较2个字符串是否一样strcat 字符串连接操作strcpy 字符串拷贝操作strncat 字符串连接操作(前n个字符)strncpy 字符串拷贝操作(前n个字符)strchr ...
分类:
编程语言 时间:
2014-10-14 20:21:49
阅读次数:
182
1)字符串操作strcpy(p,p1)复制字符串strncpy(p,p1,n)复制指定长度字符串strcat(p,p1)附加字符串strncat(p,p1,n)附加指定长度字符串strlen(p)取字符串长度strcmp(p,p1)比较字符串strcasecmp忽略大小写比较字符串strncmp(p...
分类:
编程语言 时间:
2014-10-14 13:52:58
阅读次数:
207
转自:C语言字符串操作函数 - strcpy、strcmp、strcat、反转、回文作者:jcsuC语言字符串操作函数1. 字符串反转 - strRev2. 字符串复制 - strcpy3. 字符串转化为整数 - atoi4. 字符串求长 - strlen5. 字符串连接 - strcat6. 字符...
分类:
编程语言 时间:
2014-10-11 22:14:26
阅读次数:
359
转自:http://blog.chinaunix.net/uid-24194439-id-90782.htmlstrcat 原型:extern char *strcat(char *dest,char *src); 用法:#include 功能:把src所指字符串添加到dest结尾处(覆盖d...
分类:
其他好文 时间:
2014-10-10 12:56:54
阅读次数:
149
一、strcat()与strncat()
strcat():strcat(dest,src); strcat把src所指向的字符添加到dest结尾处(覆盖原dest结尾处的'\0'),并添加新的'\0'。
说明:src和dest所指内存区域不可以重叠,并且dest必须有足够的空间来容纳src的字符串,返回指向dest的指针。
str...
分类:
其他好文 时间:
2014-10-06 18:59:20
阅读次数:
192
1。 指定路径下 单个文件夹data中所有图像
file_path = '.\data\';% 图像文件夹路径
img_path_list = dir(strcat(file_path,'*.jpg'));%获取该文件夹中所有jpg格式的图像
img_num = length(img_path_list);%获取图像总数量
if img_num > 0 %有满足条件的图像
for...
分类:
其他好文 时间:
2014-09-28 21:12:25
阅读次数:
192
ChineseInput.c
#include
#include
#include "PY_Index.h"
unsigned char * search_Chinese(char *buf)
{
static char str[50]={""};
int i=0;
strcpy(str,"PY_mb_");
strcat(str,buf);
for(i=...
分类:
其他好文 时间:
2014-09-25 18:50:37
阅读次数:
812
VC源码:
strcmp函数的写法:
#include
#include
int strcmp1(char* a, char* b)
{
for(;*a==*b;a++,b++)
if(*a!='\0') return 0;
return *a - *b;
}
main()
{ int l;
char a[10]={"db"};
char b[10]={"cb"};
...
分类:
其他好文 时间:
2014-09-23 01:30:43
阅读次数:
427
#include #include /*自己实现strcat函数的功能。(假如字符数组足够大)*/ void main(){ char str1[100] = "helloworld"; char str2[100] = "world"; int i = 0; int index = strlen....
分类:
其他好文 时间:
2014-09-22 22:12:53
阅读次数:
165
1.strstr() 函数搜索一个字符串在另一个字符串中的第一次出现。找到所搜索的字符串,则该函数返回第一次匹配的字符串的地址;如果未找到所搜索的字符串,则返回NULL。2.strcat() 函数用来连接字符串,其原型为: char *strcat(char *dest, const char .....
分类:
编程语言 时间:
2014-09-18 13:02:13
阅读次数:
224