码迷,mamicode.com
首页 >  
搜索关键字:str    ( 67828个结果
[转]PHP中替换换行符
FROM :http://www.cnblogs.com/siqi/archive/2012/10/12/2720713.html//php 有三种方法来解决 //1、使用str_replace 来替换换行 $str = str_replace(array("\r\n", "\r", "\n").....
分类:Web程序   时间:2014-09-29 15:14:01    阅读次数:190
C# 轻松获取路径中文件名、目录、扩展名等
string path = "C:\\dir1\\dir2\\foo.txt"; string str = "GetFullPath:" + Path.GetFullPath(path) + "\r\n"; str += "GetDirectoryName:" + Path.GetDirecto.....
分类:其他好文   时间:2014-09-29 13:23:20    阅读次数:162
adobe air for ios 应用完成appstore评论
1,跳转到App Store:NSString *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d", 436957167];[[UIApplication sharedApplication] openUR...
分类:移动开发   时间:2014-09-29 13:00:40    阅读次数:217
HUD 5056 Boring count
Boring count Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 0    Accepted Submission(s): 0 Problem Description You are given a str...
分类:其他好文   时间:2014-09-29 12:36:20    阅读次数:182
hdu 5056Boring count
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5056 题目大意:就是问在子串中每个小写字母出现次数不超过k次的个数,注意子串是连续的子串。。。。 思路: code: #include #include #include #include #include using namespace std; char str[100010]; ...
分类:其他好文   时间:2014-09-29 11:45:47    阅读次数:188
工作中常用到的一些方法集合
1 1.取较大文件,大图 2 NSString *Path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"]; 3 NSString *str = [NSString stringWithContentsOf...
分类:其他好文   时间:2014-09-29 11:18:07    阅读次数:203
C#委托与事件
委托的声明public delegate void MyDelegate(string str); 注 1.委托的定义和方法的定义类似,只是在前面加了一个delegate,但委托不是方法,它是一种类型。是一种特殊的类型,看成是一种新的对象类型比较好理解。用于对与该委托有相同签名的方法调用。 2.委托...
分类:其他好文   时间:2014-09-29 10:18:37    阅读次数:187
GetMemory详解
voidGetMemory1(char*p){p=(char*)malloc(100);}voidTest1(void){char*str=NULL;GetMemory(str);//把str传进去,str是一个指针strcpy(str,"helloworld");printf(str);}char*GetMemory2(void){charp[]="helloworld";returnp;}voidTest2(void){char*str=NULL;str=GetMemory2();pr..
分类:其他好文   时间:2014-09-29 04:06:27    阅读次数:268
HDU 5056 Boring Count --统计
题解见官方题解,我这里只实现一下,其实官方题解好像有一点问题诶,比如while( str[startPos] != str[i+1] ) cnt[str[startPos]]--, startPos++;那个str[i+1]的话会越界。应该是这样:while(str[startPos] != str...
分类:其他好文   时间:2014-09-29 00:48:47    阅读次数:197
OC中intValue要注意的地方
在程序中,发现一个问题,写了个例子,如下: NSDictionary * dict = [[NSDictionary alloc] init]; NSString * str = [dict objectForKey:@"key"]; NSLog(@"%d",[str intValue]);...
分类:其他好文   时间:2014-09-28 21:07:25    阅读次数:149
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!