码迷,mamicode.com
首页 >  
搜索关键字:substring with conca    ( 3920个结果
leetcode 3. Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb"Output: 3 Explanation: The answer i ...
分类:其他好文   时间:2019-12-30 09:34:59    阅读次数:59
利用腾讯云COS为Jekyll静态博客添加相册模块
前言 个人博客小站刚建站不久,想着除了主题里的功能外再添加上相册模块,于是半搜索半摸索把相册模块搞出来了,最后采用了利用腾讯云对象存储作图床的方案,在国内速度也快,不用上传图片还来修改代码,只负责上传图片就好。我参考了以下博文 "给hexo静态博客添加动态相册功能" 。实现本模块需要两方面的设置:一 ...
分类:其他好文   时间:2019-12-28 20:44:42    阅读次数:108
【HBase】HBase的RK设计、避免热点
一、HBase的RK设计 HBase读写数据大多数是通过RK,MemStore/HFile存储也是按照字典顺序排列的RK存储,所以要关注RK。 RowKey设计原则: 1)长度原则: RowKey不应该超过16字节,因为若是过长再以KV形式存储,对于HFile和MemStore来说会极大的占用存储空 ...
分类:其他好文   时间:2019-12-28 20:38:27    阅读次数:91
leetcode 336. Palindrome Pairs
查找回文对 这一题有着最straight forward的做法。就是把每俩个字符串组装一下然后检查一下是否是Palindrome。思路非常明白。代码如下: javascript addWord(word, index) { var node = this.root; var word = rever ...
分类:其他好文   时间:2019-12-27 09:47:05    阅读次数:58
获取URl到系统名称
var PathName = window.location.pathname.substring(1); var ProjectName = PathName.substring(0, PathName.indexOf("/")); var URL = window.location.protoc ...
分类:Web程序   时间:2019-12-27 09:30:12    阅读次数:80
将多行文本以单行的格式保存起来 读和写 ini
https://files.cnblogs.com/files/xe2011/WinAppINI20191226232153.rar /* 2019年12月26日 22:31:38 * [info] * group = a,b,c,d * * 需求 修改ini配置信息的group值 * * 1添加: ...
分类:其他好文   时间:2019-12-27 00:30:21    阅读次数:76
SQL中字符串截取函数(SUBSTRING)
1、left(name,4)截取左边的4个字符 列: SELECT LEFT(201809,4) 年 结果:2018 2、right(name,2)截取右边的2个字符 SELECT RIGHT(201809,2) 月份 结果:09 3、SUBSTRING(name,5,3) 截取name这个字段 从 ...
分类:数据库   时间:2019-12-26 21:01:24    阅读次数:90
C#字符串截取和转换为数值
string source_string; string substring; int num; substring=source_string.Substring(a,b);//从a开始,截取b长度的字符串 int num=int.Parse(source_string);//int可以改为flo ...
分类:Windows程序   时间:2019-12-26 17:40:03    阅读次数:74
SQLServer数据库之SqlServer查看表、存储过程、耗时查询、当前进程、开销较大的语句
--查看数据库中表的语句 SELECT s2.dbid , DB_NAME(s2.dbid) AS [数据库名] , --s1.sql_handle , ( SELECT TOP 1 SUBSTRING(s2.text, statement_start_offset / 2 + 1, ... ...
分类:数据库   时间:2019-12-25 23:56:33    阅读次数:149
H5 input file上传图片验证
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>input_file验证</title> </head> <body> <input type="file" id="upload-file"> <script ...
分类:Web程序   时间:2019-12-25 15:59:09    阅读次数:222
3920条   上一页 1 ... 31 32 33 34 35 ... 392 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!