码迷,mamicode.com
首页 >  
搜索关键字:strlen    ( 2530个结果
strlen和sizeof的区别
sizeof(...)是运算符,而不是一个函数;strlen(...)是函数,要在运行时才能计算。
分类:其他好文   时间:2014-09-19 23:50:46    阅读次数:204
[转] strcpy函数的实现
转自:strcpy函数的实现代码实现#include #include #include //#include using namespace std;int strlen(const char *src){ assert(src != NULL); int lens = 0; w...
分类:其他好文   时间:2014-09-19 19:02:15    阅读次数:169
串最基本的5个操作的C实现
1. 串赋值StrAssign/* 生成一个其值等于chars的串T */雅加达娱乐城Status StrAssign(String T,char *chars){ int i; if(strlen(chars)>MAXSIZE) return ERROR; else { T[0]=strlen.....
分类:其他好文   时间:2014-09-19 15:17:55    阅读次数:226
分享一个将字符串中间段替换为*号的函数
header('Content-type:text/html;charset=utf-8');function cutstr($str){ #计算$str的字符个数 preg_match_all("/./u", $str, $len); $strlen = (int) count(...
分类:其他好文   时间:2014-09-18 12:51:33    阅读次数:177
20140917 C++学习之字符串
摘要:本文试着比较c++字符串与C风格字符串,主要讨论的是c++中的字符串的简单操作。1、C风格字符串的主要操作与缺陷;主要操作有: strlen (求长度)、strcpy(复制字符串) 、strcmp(比较字符串大小)、strcat(字符串连接)、strstr(寻找子字符串)C标准库实现:char...
分类:编程语言   时间:2014-09-18 01:59:13    阅读次数:338
习题三——C语言笔试题
1.下面的程序片段的输出为? #include #include int main(void) {     char str[]="h\t\"\\/\012\00034";     printf("%d", strlen(str)); } 分析:主要考察的是转义字符和strlen库函数的使用。\t和\"以及\\分别是用\符号表示其后的为转义符,这三个转义符分别为报警符、"和...
分类:编程语言   时间:2014-09-17 12:10:22    阅读次数:387
faster strlen
From: Will DeWitt Jr. Subject: Fast strlen routine?NewsGroup: borland.public.delphi.language.basmDate Posted: 28-May-2003 at 13:50:4 PST Download...
分类:其他好文   时间:2014-09-17 08:55:12    阅读次数:361
hdoj 2100 Lovekey 【另类A+B】
直接将a与b相加就好了。 代码: #include #include #define M 210 char a[M], b[M],c[M]; int main(){ while(scanf("%s%s", a, b) == 2){ int la = strlen(a)-1; int lb = strlen(b)-1; memset(c...
分类:其他好文   时间:2014-09-16 22:06:41    阅读次数:223
php中计算中文字符串长度、截取中文字符串
在做PHP开发的时候,由于我国的语言环境问题,所以我们常常需要对中文进行处理。在PHP中,我们都知道有专门的mb_substr和mb_strlen函数,可以对中文进行截取和计算长度,但是,由于这些函数并非PHP的核心函数,所以,它们常常有可能没有开启。当然,如果是用的自己的服务器,则只要在php.i...
分类:Web程序   时间:2014-09-15 22:41:09    阅读次数:347
c之指向常字符串的指针做加法
先看一小段代码#includeint main(){ size_t len = 0; const char* id = "abcdefghijklmn"; len = strlen(id); if (len > 3) { id += len - 3 ; ...
分类:其他好文   时间:2014-09-15 19:04:19    阅读次数:185
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!