码迷,mamicode.com
首页 >  
搜索关键字:word length    ( 36649个结果
NSMutableAttributedString 的使用方法,设置格式
NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:title]; NSRange range = NSMakeRange(0, [attrString length...
分类:其他好文   时间:2014-05-19 11:20:27    阅读次数:236
[snippet] get parameter
function(name) { var query=location.search.substring(1); var pairs=query.split("&"); for(var i=0;i<pairs.length;i++) ...
分类:其他好文   时间:2014-05-19 10:43:27    阅读次数:266
Windows 键盘操作快捷方式积累
复制、粘贴:CTRL+C复制被选择的项目到剪贴板CTRL+V粘贴剪贴板中的内容到当前位置CTRL+X剪切被选择的项目到剪贴板Alt+ space + E + P CMD 窗口快速粘贴关闭:CTRL+ W关闭Word、IE当前程序窗口(对Notepad,路径窗口不起作用)CTRL+ F4同上ALT+F...
分类:Windows程序   时间:2014-05-19 09:05:49    阅读次数:429
关于Asp.Net调用Office组件将Word文件转换为Pdf文件
1、首先安装 Microsoft Office 2007加载项:Microsoft Save as PDF-简体中文版:下载地址:http://download.microsoft.com/download/3/8/8/388812b2-0d3f-474e-a7ef-b095d3d0d3cd/Sav...
分类:Web程序   时间:2014-05-19 07:43:06    阅读次数:454
[leetcode]_Search Insert Position
题目:查找元素target插入一个数组中的位置。代码:public int searchInsert(int[] A, int target) { int len = A.length; int i; for(i = 0 ; i < len ; i++){ ...
分类:其他好文   时间:2014-05-18 20:28:13    阅读次数:299
MySQL基础学习之函数
数学函数绝对值 abs()圆周率 PI()平方根 sqrt()模除取余 mod(被除数,除数)随机数 rand()四舍五入 round(数字)次方 pow(5,2)e为底的指数函数 exp(数字)字符串函数字符长度 length(字符)字符连接 concat(字符1,字...
分类:数据库   时间:2014-05-18 20:05:37    阅读次数:469
【leetcode】Longest Palindromic Substring
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:其他好文   时间:2014-05-18 19:39:55    阅读次数:355
JavaScript Array 对象
创建 Array 对象的语法:var array = []; var array new Array();var array new Array(size); // length = sizevar array new Array(element0, element1, ..., elementn)...
分类:编程语言   时间:2014-05-18 02:22:39    阅读次数:314
JS Format函数
//扩展方法$.GM.Format = function (source, params) { if (arguments.length == 1) return function () { var args = $.makeArra...
分类:Web程序   时间:2014-05-17 21:49:16    阅读次数:333
word 2010自定义快捷键提高工作效率
经常使用word处理文档, 做笔记的时候会把word文档框缩小,以便同时看pdf同时记录笔记,但是缩小的word框不能把所有的菜单项显示出来,我比较常用那个插入边框下面的那个横线来做分割符,但是缩小了word之后那个菜单项显示不出来,每次要用的时候都要先最大化word,操作完了之后再恢复原来的大小来...
分类:其他好文   时间:2014-05-17 20:40:38    阅读次数:368
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!