一、截取字符串第一步 导入包:第二步:${fn:substring(str,0,10)} 二、标签循环判断三、if语句
分类:
Web程序 时间:
2014-06-15 22:27:36
阅读次数:
335
原题地址:https://oj.leetcode.com/problems/minimum-window-substring/题意:Given a string S and a string T, find the minimum window in S which will contain all...
分类:
编程语言 时间:
2014-06-15 22:10:42
阅读次数:
1109
1、STANDBY 只读方式还原数据库:[备份数据库服务器]将完全备份文件复制到备份数据库服务器上,并以STANDBY的方式进行恢复。SQL语句:RESTORE DATABASE [CNBlogsJob] FROM DISK = N'F:\FullBackup\CNBlogsJob.bak' WI....
分类:
数据库 时间:
2014-06-15 20:33:36
阅读次数:
286
原题地址:https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/题意:Given a string, find the length of the longest substring witho...
分类:
编程语言 时间:
2014-06-15 19:51:00
阅读次数:
254
Given a binary tree, find its maximum depth.
The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.
此题和求二叉树的最短路径几乎一模一样。
public int...
分类:
其他好文 时间:
2014-06-15 16:36:40
阅读次数:
209
对于上网问题,此次台式机我买了一个无线网卡,也挺好用的,而用可以将其当作无线路由来用。网上这样说的: wifi共享精灵可以用于台式电脑吗? 电脑有无线网卡像笔记本样 wifi共享精灵当使用啦 或者使用wifi宝 只要插上去台式机用了 这样当我回家的时候就可以拿上这个来玩平板了 我知道还有一个随身wi...
分类:
其他好文 时间:
2014-06-15 16:26:33
阅读次数:
160
string str = "大龙喜欢zzm";
string s1 = str.Substring(0, 2);
string s2 = str.Substring(2, 2);
string s3 = str.Substring(4);
Console.WriteLine(str[0]);
...
分类:
其他好文 时间:
2014-06-15 08:14:34
阅读次数:
207
刚刚 部署了ii7的dll的有x86写的,就会出现以下这样的问题 iis 7 x86,Could not load file or assembly 'Name' or one of its dependencies. An attempt was made to load a program wi...
分类:
Web程序 时间:
2014-06-14 23:07:21
阅读次数:
428
substring(s1,int,int) 截取字符串,起始位置,截取个数,返回截取后的字符串charindex(s1,s2)查找字符s1在s2中的位置。返回int位置SELECT substring(productid,0,(charindex(')',productid)+1)) as id1,...
分类:
数据库 时间:
2014-06-14 16:13:34
阅读次数:
238
这道题想的时候颇费了一些周折,想过把L的所有concatenation组合出来,放到hash或map里,然后遍历S的时候直接看。但是这样如果L的size: Lsize过大的话,可能的组合有Lsize!种,组合数剧增,效率低下,所以不采用这种方法。又考虑在S中从左向右一个word一个word遍历过去,...
分类:
其他好文 时间:
2014-06-14 09:07:00
阅读次数:
252