链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=151For each list
of words, output a line with each word reversed without changing the or...
分类:
其他好文 时间:
2014-06-10 00:14:19
阅读次数:
300
public enum CacheControlMode { DisableCache,
UseExpires } string s = CacheControlMode.UseExpires.ToString(); CacheContro...
分类:
其他好文 时间:
2014-06-08 07:19:44
阅读次数:
200
freemarker字符串拼接1、字符串拼接的几种类型(1)字符串和字符串(2)字符串和数字(3)字符串和字符串变量(4)字符串变量和字符串变量2、演示演示样例${str}
${"您好," + "李思思"} ${"您好,你今年年龄是:" + 20}${10 + "岁"} ...
分类:
其他好文 时间:
2014-06-08 06:35:13
阅读次数:
224
JS自带函数concat将两个或多个字符的文本组合起来,返回一个新的字符串。var a =
"hello";var b = ",world";var c = a.concat(b);alert(c);//c =
"hello,world"indexOf返回字符串中一个子串第一处出现的索引(从左到右搜...
分类:
Web程序 时间:
2014-06-08 06:30:26
阅读次数:
191
1、选择 customn 更改安装目录2、选择 develop 模式,默认,占用内存较小。
server machine 中等内存 dedicate mysql server machine 专用服务器,最大内存3、选择 multifunction
Database(多功能数据库)默认。4、字符集....
分类:
数据库 时间:
2014-06-08 01:20:53
阅读次数:
289
字符串和字符 (Strings and Characters)String是一个有序的字符集合,例如
"hello, world", "albatross"。Swift 字符串通过String类型来表示,也可以表示为Character类型值的集合。Swift
的String和Character类型提...
分类:
其他好文 时间:
2014-06-08 00:24:00
阅读次数:
381
/*** author geksong * function 中文字符串相关操作**/public
class ChinaStringUtil {/** * 判断字符是不是中文字符 * @param c * @return */public static
boolean isChinese(char...
分类:
编程语言 时间:
2014-06-08 00:16:40
阅读次数:
385
1.PC机属于微型计算机,常识吧,我哦竟然不知道。2.sql 语句的通配符% ---
一般和like在一起用。匹配任意长度的(长度可以为0)字符如’m%n’匹配字符m和n之间有任意个字符的字符串不是*号3.考试要用心,用心,思维不能僵了。4.数据结构:n个元素进栈,共有多少种出栈顺序?应该是公...
分类:
其他好文 时间:
2014-06-07 20:32:41
阅读次数:
235
firebug 打UTF8 字符:var res = ""; for(var
i=0x2000;i< 0x2bff ;i++){ res += i.toString(16) + "\t:" + unescape ( "%u" +
i.toString(16) ) +"\t\t" ; } reshtt...
分类:
其他好文 时间:
2014-06-07 20:08:39
阅读次数:
448
1 //将一个字符串数组的元素的顺序进行反转。{"3","a","8","haha"}
{"haha","8","a","3"}。第i个和第length-i-1个进行交换。 2 string[] strs = { "3", "a", "8",
"ha...
分类:
其他好文 时间:
2014-06-07 16:53:41
阅读次数:
195