码迷,mamicode.com
首页 >  
搜索关键字:empty    ( 6963个结果
C#:自定义函数
将数组转成字符串/// /// 将数组转成字符串/// /// 分隔符/// 要字符串数组private string Implode(char glue,string[] pieces) { string result = string.Empty; int count = piece...
分类:其他好文   时间:2014-05-14 07:48:42    阅读次数:363
正则表达式匹配URL——给URL地址加上<a> 链接
<?php function replace_url ($content) { if (empty($content)) return; //给URL地址加上 链接 $preg = '/(?:http:\/\/)?([\w.]+[\w\/]*\.[\w.]+[\w\/]*\??[\w=\&\+\%]*)/is'; $content = preg_replace($preg, '\1',...
分类:其他好文   时间:2014-05-12 07:17:12    阅读次数:316
使用phonegap + appframework2.0框架
1、页面切换动画结束时卡(禁用动画)2、搜索或导航标签需要固定(标签选择器动态修改高度)3、pancel容器默认生成的时候内容不放 通过动态的的$("").empty().html()添加内容的时候 滚动条有问题 ,没有生成 滚动容器afScrollBar那层(标签默认放个占位)4、快速切换详情页和...
分类:移动开发   时间:2014-05-11 00:14:15    阅读次数:385
单机版wiki:网页版记事本和网页版时间管理GTD软件
TiddlyWiki:可以用来做个人记事本,只需要下载一个empty.html便可以使用,搬家到不同电脑也很方便。如果能解决安全性问题,便可以搬到网络上在线使用。和Blog的差别在于这里是不想公开的只给自己看的记事本。 时间管理GTD: MonkeyGTD,也是只要下载一个mgsd.html文件.....
分类:Web程序   时间:2014-05-10 18:52:01    阅读次数:1124
hdu 1325 Is It A Tree?
Problem DescriptionA tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by dire...
分类:其他好文   时间:2014-05-10 03:18:52    阅读次数:374
UVA Parentheses Balance
题目如下: Parentheses Balance You are given a string consisting of parentheses () and []. A string of this type is said to be correct: (a)     if it is the empty string (b)     if A and B are ...
分类:其他好文   时间:2014-05-09 20:57:46    阅读次数:316
Github 修正上传时“this exceeds GitHub’s file size limit of 100 MB”错误
Github只允许上传最大100MB的文件,如果超过,则会被server reject则需:git filter-branch --force --index-filter "git rm --cached --ignore-unmatch Project1/Project1.1\ Sample\ Project/output.txt"  --prune-empty --tag-name-filt...
分类:其他好文   时间:2014-05-09 06:35:41    阅读次数:341
常用判断
isset:变量是否设置,或者是否未null$var="11";isset($var);返回1isset($empty);返回0数组$arr=array();isset($arr);返回1empty:""、0、"0"、NULL、FALSE、array()、var $var;以及没有任何属性的对象都将...
分类:其他好文   时间:2014-05-08 23:43:03    阅读次数:350
捕获Entity framework验证异常
Entity framework在验证未通过的时候默认不会抛出详细异常,这给我们debug带来很大的困难,不过我们可以手动捕获,见代码: private int Update(Employee entity) { string error = string.Empty; using (NorthwindEntities ctx = ...
分类:其他好文   时间:2014-05-07 21:50:21    阅读次数:302
Python3.2官方文档翻译--类备注和异常也是类
6.7备注 有时有个像Pasca中“记录”和C中“数据体”的数据类型非常有用。集合一些数据项。一个空类定义可以清楚地显示: class Employee: pass john = Employee() # Create an empty employee record # Fill the fields of the record john.name = ’John Doe’ joh...
分类:编程语言   时间:2014-05-07 11:25:11    阅读次数:311
6963条   上一页 1 ... 693 694 695 696 697 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!