码迷,mamicode.com
首页 >  
搜索关键字:substr    ( 2734个结果
leetcode 3. Longest Substring Without Repeating Characters (java)
class Solution { public int lengthOfLongestSubstring(String s) { int[] dict = new int[256]; Arrays.fill(dict, -1); int maxLen = 0, start = -1; for (in ...
分类:编程语言   时间:2020-03-12 14:37:50    阅读次数:71
leetcode 5. Longest Palindromic Substring (java)
class Solution { public String longestPalindrome(String s) { if (s == null || s.length() < 1) return ""; int start = 0; int end = 0; for (int i = 0; i ...
分类:编程语言   时间:2020-03-12 14:14:41    阅读次数:65
string.php
<?php /** * 产生UUID */ function uuid() { $uuiqId = md5(uuiqid(mt_rand() . microtiome())); $uuid = substr($uniqId, 0, 8) . '-' $uuid = substr($uniqId, 8 ...
分类:Web程序   时间:2020-03-11 23:49:33    阅读次数:104
mysql模糊查询
Mysql 使用内置函数进行模糊查询(locate,position,instr,find_in_set) 1、LOCATE('substr',str,pos)方法 2、POSITION('substr' IN `field`)方法 3、INSTR(`str`,'substr')方法 4、FIND_ ...
分类:数据库   时间:2020-03-10 10:24:25    阅读次数:67
sql-libs闯关61-65
第六十一关 和六十关基本一样,就是变成了单引号和双括号,这好像是第一次遇见双括号 爆数据库名 ?id=1'))and extractvalue(1, concat(0x5c, (select database())))%23 爆表名 ?id=0‘)) union select extractvalu ...
分类:数据库   时间:2020-03-08 16:08:44    阅读次数:97
Ora 字符串转集合,集合转字符串,CLOB转char
Ora 字符串转集合,集合转字符串,转char, select CL_EDIAG,(SELECT DIAG_NAME FROM CODE_DIAGNOSE WHERE DIAG_CODE =CL_EDIAG ) CL_EDIAGNAME, CL_CDIAG CL_CDIAGNAME,dbms_lob ...
分类:其他好文   时间:2020-03-06 19:44:44    阅读次数:119
Oracle中instr函数使用方法
在Oracle中,instr函数返回要截取的字符串在源字符串中的位置。只检索一次,就是说从字符的开始到字符的结尾就结束 INSTR (源字符串, 目标字符串, 起始位置, 匹配序号) INSTR方法的格式为INSTR(src, subStr,startIndex, count)src: 源字符串su ...
分类:数据库   时间:2020-03-06 13:16:12    阅读次数:88
剑指offer-37 序列化二叉树
剑指offer-37 序列化二叉树题目:思路:自己解答:这个有错误public class Solution { String Serialize(TreeNode root) { if(root == null) return "#!"; StringBuilder bd = new String... ...
分类:其他好文   时间:2020-03-02 01:12:37    阅读次数:69
93. 复原IP地址
给定一个只包含数字的字符串,复原它并返回所有可能的 IP 地址格式。 示例: 输入: "25525511135"输出: ["255.255.11.135", "255.255.111.35"] 解:这道题采用暴力四层循环的方法。 class Solution { public: vector<str ...
分类:其他好文   时间:2020-02-28 20:42:00    阅读次数:46
Shell脚本查询磁盘数量
之前帮朋友写的脚本,运维大数据服务器时候用的。 #!/bin/bash ##磁盘数量 Disk=$( fdisk -l |grep 'Disk' |grep 'sd' |awk -F , '{print "%s",substr($1,13,1)}') var=${Disk: -1:1} echo b... ...
分类:系统相关   时间:2020-02-27 19:17:29    阅读次数:124
2734条   上一页 1 ... 20 21 22 23 24 ... 274 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!