create function fn_Getquanpin(@str varchar(100))returns varchar(8000)asbegin declare @re varchar(8000),@crs varchar(10) declare @strlen int select @s....
分类:
数据库 时间:
2014-06-28 13:18:16
阅读次数:
371
字符串是一种重要的数据类型,但C语言中没有显式的字符串数据类型。头文件string.h中包含了大多数对字符串的操作函数。因此,有字符串的操作时,一般会包含string.h头文件。
1、字符串的长度:对字符串进行的操作中,经常要对它进行求长度的操作。字符串的长度就是它所包含的字符个数。
size_t strlen(char const *string);
注意:strlen返回一个类型为siz...
分类:
编程语言 时间:
2014-06-18 12:21:25
阅读次数:
208
1. sizeof(literal-string) is number of bytes plus 1 (NULL is included), while strlen(literal-string) is number of bytes.2. Printf and scanf formatBefo...
分类:
其他好文 时间:
2014-06-18 10:14:22
阅读次数:
226
本文是笔者对printf的一种全新的尝试,自己发现了一些printf与众不同的功能...
分类:
其他好文 时间:
2014-06-18 00:59:35
阅读次数:
195
#include int _tmain(int argc, _TCHAR* argv[]){ char *pMyChar = "I like coding !"; char myChar[] = "I like coding !"; int num1(0),num2(0); num1...
分类:
其他好文 时间:
2014-06-17 23:30:56
阅读次数:
245
intout_max_length_crease_str(constchar*p,std::vector&vct){ vct.clear(); intnlen=strlen(p); if(nlen==0){ return0; } if(nlen==1){ vct.push_back(p); r...
分类:
其他好文 时间:
2014-06-15 21:01:04
阅读次数:
178
//1.17//遍历数组a,计算其中负数的个数int amount=0;for(int i=0;i<strlen(a);i++) if(a[i]<0) ++amount;//1.19//每隔输10个值for(int val=lower,count=1;val<=upper;++v...
分类:
编程语言 时间:
2014-06-15 10:50:29
阅读次数:
268
dp经典关于这道题,我看了网上大量的资料,发现整体思路是对的,但是细节解释是错的(或者说不到位)Len = strlen(say);
say是牛说的话,下面的word代表单词列表dp[i]表示从say中第i个字符开始,到第Len-1个字符(结尾处)这段区间所删除的字符数,初始化为dp[i]=len-...
分类:
其他好文 时间:
2014-06-13 08:27:32
阅读次数:
285
#include#includeusing namespace std;char
c[100],ans[100];int main(){ int len; cin>>len; while(len--) {
cin>>c; int m; cin>>m; int len=strlen(c); int b...
分类:
其他好文 时间:
2014-06-12 07:40:23
阅读次数:
215