码迷,mamicode.com
首页 >  
搜索关键字:str    ( 67828个结果
学习KMP算法
int kmp(char * t,int lenT,char * pat,int lenPat){ int posP=0,posT=0; int[] f=partialMatch(pat,lenPat)//获取pat字符串的部分匹配数组 while(posP str[0:k]==...
分类:其他好文   时间:2014-06-16 00:57:05    阅读次数:268
shell--字符串是否为空
b1=b2=""b3="hello"if [[ -n "${b3}" ]]then echo "not null"else echo "null"fib1 nullb2 nullb3 not null-n str 字符串长度非零
分类:其他好文   时间:2014-06-13 00:15:10    阅读次数:241
C#中List〈string〉和string[]数组之间的相互转换
1,从System.String[]转到ListSystem.String[] str={"str","string","abc"};List listS=new List(str);2, 从List转到System.String[]List listS=new List();listS.Add("...
分类:其他好文   时间:2014-06-12 19:24:08    阅读次数:206
sax解析xml,在characters事件时,未完全解析字段内容就开始业务逻辑处理
解决办法方法:所以应该使用StringBuilder缓存,在startElement的时候调用sb.setLength(0);每次characters时调用sb.append(ch, start, length);在endElement的时候才调用String str = sb.toString()
分类:其他好文   时间:2014-06-12 17:44:19    阅读次数:232
_strdup和strdup还有string.h和string事
在MSVC中,_strdup(const char *p)函数的作用是返回一个指针,这个指针指向p的一个复制串。#includeint main(){ char str[]="this is a string"; char *dstring=strdup(str); std::co...
分类:其他好文   时间:2014-06-12 14:26:37    阅读次数:277
C++学习笔记:不用sizeof判断int类型占用几个字节
#include #include char *change(int val, int base, char *retbuf){ static const char *str = "0123456789ABCDEF"; char *p; char buf[15]; p = b...
分类:编程语言   时间:2014-06-12 10:09:57    阅读次数:356
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!