码迷,mamicode.com
首页 >  
搜索关键字:substring with conca    ( 3920个结果
math、string
//underScore 库 ...
分类:其他好文   时间:2019-07-14 14:54:27    阅读次数:79
POJ - 3693 Maximum repetition substring (后缀数组)
The repetition number of a string is defined as the maximum number R such that the string can be partitioned into R same consecutive substrings. For e ...
分类:编程语言   时间:2019-07-12 16:59:00    阅读次数:108
JS学习之字符串截取函数substr()与substring()的区别
比较简单,直接上代码 ...
分类:Web程序   时间:2019-07-12 14:22:22    阅读次数:132
移动端列表进入详情后返回列表回到原位置
// 返回上次浏览位置 $(function () { var str = window.location.href; str = str.substring(str.lastIndexOf("/") + 1); if ($.cookie(str)) { $("html,body").animate... ...
分类:移动开发   时间:2019-07-11 14:06:21    阅读次数:223
MySql实现 split
substring_index(str,delim,count) str:要处理的字符串 delim:分隔符 count:计数 例子:str=www.baidu.com substring_index(str,'.',1) 结果是:www substring_index(str,'.',2) 结果是 ...
分类:数据库   时间:2019-07-06 17:33:24    阅读次数:101
数据结构---公交线路提示系统05
今天做的最多的事情就是纠错了,通过添加输出语句判断错误来源; 找到错误来源: wb = new XSSFWorkbook(input);//语句创建错误 网上查询发现是jar包的问题; 下图为poi的jar包各个用途:(本人需要的是excel) ...
分类:其他好文   时间:2019-07-06 17:31:22    阅读次数:101
leetcode力扣刷题系列python——3、无重复字符的最长子串
题目: 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb"输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2: 采用哈希表法:设定左右双指针l和r,遍历字符串;哈希表存储某字符s[i]最新在字符串中出现的位 ...
分类:编程语言   时间:2019-07-05 19:33:52    阅读次数:197
Java常用工具——java字符串
一、String常用字符串 ...
分类:编程语言   时间:2019-07-05 19:14:40    阅读次数:111
shiro-重写标签功能----shiro:hasPermission 标签重写
<shiro:hasPermission name="modular:to_edit or modular:delete"> </shiro:hasPermission> <shiro:hasPermission name="modular:to_edit or modular:delete"> < ...
分类:Web程序   时间:2019-07-05 17:59:17    阅读次数:823
JAVA FileUtils(文件读写以及操作工具类)
文件操作常用功能: ...
分类:编程语言   时间:2019-07-05 14:13:54    阅读次数:160
3920条   上一页 1 ... 49 50 51 52 53 ... 392 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!