码迷,mamicode.com
首页 >  
搜索关键字:substring with conca    ( 3920个结果
最长回文子串
"5. 最长回文子串" 难度?? 给定一个字符串 ,找到 中最长的回文子串。你可以假设 的最大长度为 1000。 示例 1: 示例 2: 思路 暴力,判断每个子串是否为回文串 中心扩展 ...
分类:其他好文   时间:2020-05-23 12:54:52    阅读次数:49
js字符串截取函数
string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i); // or st ...
分类:Web程序   时间:2020-05-23 00:05:00    阅读次数:91
VUE过滤器
filters:{ timeFilter(data) { return data.substring(0, 10).replace(/-/g,'.');//return后面的就是数据处理方法 },}, filters和data同级的 <view>提现有效期:{{ 入参| timeFilter }}- ...
分类:其他好文   时间:2020-05-21 14:36:08    阅读次数:42
LeetCode 1371 每个元音包含偶数次的最长子字符串 做题感悟
题目链接: https://leetcode-cn.com/problems/find-the-longest-substring-containing-vowels-in-even-counts/ 一开始不会做,看了题解并和朋友讨论过后,终于弄懂官方解答为什么那么写了! 先贴一下官方解答的代码: ...
分类:其他好文   时间:2020-05-20 23:59:46    阅读次数:117
LeetCode - Serialize and Deserialize BST
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:其他好文   时间:2020-05-20 14:12:20    阅读次数:55
spark dataFrame api操作
api代码示例入下 object DataFrameCase { def main(args: Array[String]): Unit = { val sparksession = SparkSession.builder().appName("DataFrameCase").master("lo ...
分类:Windows程序   时间:2020-05-19 23:10:39    阅读次数:86
获取后缀
// 获取后缀 format(temp) { let index = temp.lastIndexOf('.') let format = temp.substring(index + 1) return format } ...
分类:其他好文   时间:2020-05-19 18:02:56    阅读次数:48
mvc返回多个结果集,返回多个视图
System.Web.Mvc.ViewPage<dynamic>//这句不清楚到底有没有用,反正我没用到 public ActionResult Index() { IDictionary<string, object> entity = new Dictionary<string, object> ...
分类:Web程序   时间:2020-05-19 15:07:06    阅读次数:78
00005-js 获取uuid
admin.guid=function(){functionS4(){return(((1+Math.random())*0x10000)|0).toString(16).substring(1);}return(S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());}
分类:Web程序   时间:2020-05-19 01:14:03    阅读次数:71
数据库备份
SET QUOTED_IDENTIFIER OFFSET ANSI_NULLS OFFGO ALTER proc p_backupdb@dbname sysname='', --要备份的数据库名称,不指定则备份当前数据库@bkpath nvarchar(260)='', --备份文件的存放目录,不指 ...
分类:数据库   时间:2020-05-18 15:58:19    阅读次数:101
3920条   上一页 1 ... 13 14 15 16 17 ... 392 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!