列转行 select prd_no_chg_y, SUBSTRING(t.prd_no_chg_y, number ,CHARINDEX(';',t.prd_no_chg_y+';',number)-number) prd_no_chg from tb t,master..spt_values s ...
分类:
数据库 时间:
2020-11-21 12:37:40
阅读次数:
11
Given a string s, find the length of the longest substring without repeating characters. Input: s = "abcabcbb"Output: 3Explanation: The answer is "abc ...
分类:
其他好文 时间:
2020-11-08 17:44:10
阅读次数:
26
##前序遍历+判断 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x ...
分类:
其他好文 时间:
2020-10-30 11:39:04
阅读次数:
14
ABAP 正则表达式 ABAP支持正则表达式。 支持正则表达式的语句: 1.FIND,REPLACE语句; 2.Functions:count,count_xxx,contains,find,find_xxx,match,matches,replace,substring,substring_xxx ...
分类:
其他好文 时间:
2020-10-18 16:46:52
阅读次数:
27
字符串方法 String subString(int begin)截取字符串,开始索引; 字符串方法 String subString(int begin,int end)截取字符串,开始索引,结束索引;【包含开始不包含结束】 public static void main(String[] arg ...
分类:
其他好文 时间:
2020-10-08 18:59:06
阅读次数:
21
思路参考:最长公共子序列 public class Solution { /** * longest common substring * @param str1 string字符串 the string * @param str2 string字符串 the string * @return st ...
分类:
其他好文 时间:
2020-10-08 18:32:02
阅读次数:
18
1. 题目描述: 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2: 输入: "bbbbb" 输出: 1 解释: 因为无重复字符的最长子串是 "b",所 ...
分类:
其他好文 时间:
2020-10-07 21:15:48
阅读次数:
28
简答 css选择器判断 CSS position 属性relative, absolute, static 和fixed 的区别。 JS字符串属于基本类型,请分析字符串为什么会有substring, indexOf 等方法。 JS 语言中构造函数、原型对象和实例它们三者的关系 this指向 编程 事 ...
分类:
其他好文 时间:
2020-10-06 20:15:03
阅读次数:
62
添加验证码生成类Captcha public class Captcha { /// <summary> /// 生成随机数 /// </summary> /// <param name="codeLen">数据的长度</param> /// <returns></returns> public s ...
分类:
Web程序 时间:
2020-09-24 21:17:49
阅读次数:
51
1.删掉一个字符串中的某个字符 2.从某个位置截断一个字符串 substring(x,y) :截取从下标为x的字符开始,到下标y-1的字符结束 substring(x):截取从下标为x的字符到字符串末尾的字符串 ...
分类:
编程语言 时间:
2020-09-17 23:51:04
阅读次数:
45