E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
SUBSTR
SQL语句正则表达式
REGEXP_LIKE匹配:REGEXP_LIKE(String,Regexp)REGEXP_INSTR包含EGEXP_REPLACE替换REGEXP_
SUBSTR
提取正则表达式常用字符字符说明^匹配字符串的开始位置
@明天更美好
·
2023-10-12 15:55
mysql
sql
mysql
SQL正则表达式
REGEXP_LIKE匹配:REGEXP_LIKE(String,Regexp)REGEXP_INSTR包含EGEXP_REPLACE替换REGEXP_
SUBSTR
提取正则表达式常用字符:字符说明^匹配字符串的开始位置
hyfstyle
·
2023-10-12 15:52
SQL常用函数
JS姓名脱敏处理
str||str==undefined||str.length==0){return''}if(str.length==1){returnstr}if(str.length==2){returnstr.
substr
ing
Coder_JdHo
·
2023-10-12 15:56
校验文件格式,读取File或MultipartFile文本文件中的每一行数据
//校验文件格式StringoriginalFileName=file.getOriginalFilename();StringfileType=originalFileName.
substr
ing(Objects.requireNonNull
码农阿豪
·
2023-10-12 10:28
收集
重难点收集
java
把字段的值作为in条件进行查询
selectFUSHENPEOPLE,(selectwm_concat(user_name)fromsys_userwhereuser_idin--in外层语句(selectDISTINCTregexp_
substr
zip it.
·
2023-10-12 08:48
数据库
sql
mysql
php函数
1.strstr()2.
substr
()3.PHP字符串函数parse_str(将字符串解析成多个变量)-CSDN博客4.explode()1.和是短标签而是长标签,其中代替的是
El.十一
·
2023-10-12 05:47
php
开发语言
微信小程序 在wxml写过滤器 脱敏手机号
献上代码vartoHide=function(array){varmphone=array.
substr
ing(0,3)+'****'+array.
substr
ing(7);returnmphone;}
航老板不想敲代码
·
2023-10-11 22:28
微信小程序
前端
js
小程序
微信
前端
微信小程序WXML使用时间戳转格式,
substr
ing截取字符串
根目录创建WXS文件夹WXS文件夹下创建function.wxs文件//function.wxs//时间戳varformatNumber=function(n){n=n.toString()returnn[1]?n:'0'+n}varregYear=getRegExp("(y+)","i");vardateFormat=function(timestamp,format){if(!format){
热心的web市民
·
2023-10-11 22:28
微信小程序
微信小程序
小程序
javascript
vue自定义全局指令-实现防抖与节流
'组件创建成功')},})//添加全局过滤器Vue.filter('ellipsTexts',(text,num)=>{if(text){if(text.length>num){returntext.
substr
ing
yixiancheng
·
2023-10-11 16:17
vue.js
javascript
elementui
前端
ecmascript
uniapp无法使用
substr
_uniapp,微信小程序中使用 MQTT的问题
最近在uniapp打包成微信小程序的项目中第一次用到了MQTT。使用比较简单,但是还是遇到了一些问题。在此记录一下。官方文档:MQTTGithub官方MQTT测试工具:MQTTX。测试工具使用说明MQTT的js文件:mqtt.min.js先上一点注意事项:(1)MQTT.js一个MQTT协议的客户端库,用JavaScript编写,可用于Node.js和浏览器。在Node.js端可以通过全局安装使用
weixin_39731916
·
2023-10-11 16:43
php 字符串加密解密
base64_decode($string):
substr
(md
无为践影行
·
2023-10-11 13:01
php函数功能应用
php
php
加密解密
AWK语言第二版 2.6个人库 2.7小结
2.6个人库Awk提供了适量的内置函数库,如length、sub、
substr
、printf等其他十来个;在A.2.1节的参考手册中都有列出。你可以自己创建更多函数,以便有需要时引入到Awk程序中。
十八年后又是一条好汉
·
2023-10-11 12:14
AWK
linux
开发语言
一大波JS开发工具函数来了 @劉䔳
functionGetQueryString(name){varreg=newRegExp("(^|&)"+name+"=([^&]*)(&|$)");varr=window.location.search.
substr
劉䔳Fairy
·
2023-10-11 07:00
js文字逐个显示
定时器每隔一段时间,替换文本内容,,
substr
ing截取更多的字符串显示Titleletcontent='足球是一项全球性的运动,它不仅是一项体育竞技,更是一种文化、一种生活方式。
waterkid0
·
2023-10-11 05:47
javascript
前端
开发语言
算法-动态规划/中心扩散法-最长回文子串
算法-动态规划/中心扩散法-最长回文子串1题目概述1.1题目出处https://leetcode.cn/problems/longest-palindromic-
substr
ing1.2题目描述2动态规划
迷路剑客
·
2023-10-11 05:44
算法
动态规划
BM85 验证IP地址
分割字符串比较法(推荐使用)2.2.1在a-f,A-F范围不在该范围表述3涉及函数讲解3.1string::find()函数和string::npos函数的介绍3.2erase()函数3.3字符串截取s.
substr
R-G-B
·
2023-10-11 02:01
算法
C++
IP判断
最长公共子串(C++实现)
intlen=0;intindex=0;vector>dp(m+1,vector(n+1));for(inti=0;ilen){len=dp[i+1][j+1];index=i;}}}}returnstr1.
substr
Kk_1025
·
2023-10-11 02:29
算法
数据结构
c++
代码随想录算法训练营第四十九天 | 139.单词拆分、关于多重背包,你该了解这些!
链接:代码随想录其他补充HashSetset=newHashSet<>(wordDict);//把题目中给的wordDict转成HashSetset.contains(s.
substr
ing(j,i))
gakkicp
·
2023-10-11 00:19
动态规划
算法
代码随想录算法训练营第59天|647. 回文子串、516.最长回文子序列
647.回文子串https://leetcode.cn/problems/palindromic-
substr
ings/一开始我做的:classSolution{public:boolisSub(string
鲁树人146
·
2023-10-10 21:45
算法
java String类常用方法
3.
substr
ing(intbeginIndex):返回从指定索引开始到字符串末尾的子字符串。
路西法98
·
2023-10-10 19:19
java
开发语言
3.6字符串
每个双引号括起来的都是String类的一个实现Stringe="";子串String类的
substr
ing方法可以从一个比较大的字符串中提取一个字串Stringgeeting="hello";Strings
十六只猴子王
·
2023-10-10 17:29
vue.js怎样将时间戳转化为日期格式
.$1,(date.getFullYear()+'').
substr
(4-Reg
混世魔王的小公举
·
2023-10-10 17:41
js通用方法封装
之后的参数部分字符串conststr=url.
substr
(url.indexOf('?')
Cola_Mr
·
2023-10-10 17:14
Substr
ate
Substr
ate并不完全适合每一个用例、应用程序或项目。然而,如果你想建立一个区块链,那么Subst
元苍子
·
2023-10-10 16:51
算法(leetode,附思维导图 + 全部解法)300题之(3)无重复字符的最长子串
算法(leetode,附思维导图+全部解法)300题之(3)无重复字符的最长子串一题目描述题目描述题目描述二解法总览(思维导图)思维导图三全部解法1方案11)代码:varlengthOfLongest
Substr
ing
码农三少
·
2023-10-10 15:32
[NCTF2019]SQLi regexp 盲注
/robots.txt访问一下$black_list="/limit|by|
substr
|mid|,|admin|benchmark|like|or|char|union|
substr
ing|select
双层小牛堡
·
2023-10-10 14:55
BUUctf
php
TypeScript 笔记:String 字符串
replace替换字符split
substr
提取字符串中两个指
UQI-LIUWJ
·
2023-10-10 08:47
Typescript
&
JavaScript
&
HTML
笔记
MYSQL——MYSQL的常用内置函数
目录字符串处理函数日期和时间字符串处理函数系统函数:直接调用即可.任何函数都有返回值,函数的调用是通过select调用.因为有返回值,所以只能用select调用.Mysql中字符串的操作是以单个字符为单位的1.
substr
ing
Geek Li
·
2023-10-10 08:11
MYSQL
mysql
数据库
database
sqlserver中的常见函数用法
问题解决:updatepetsetpetPhoto=
substr
ing(petPhoto,1,datalength(petPhoto)-3)+'jpg'wherepetPhotolike'%.gif'注意匹配符
Z.ain
·
2023-10-10 01:41
sqlserver
sqlserver
数据库
database
Leetcode每日刷题笔记--JAVA版(边做边更新)
DynamicProgramming)广度优先搜索(BFS)双指针(TwoPointer)滑动窗口(SlidingWindow)一些例题1.TwoSum2.AddTwoNumbers3.Longest
Substr
ingWithoutRepeatingCharacters2021
L-->R
·
2023-10-09 23:13
Leetcode
leetcode
算法
【JavaScript 20】String对象 构造函数 工具方法 静态方法 实例属性 实例方法
String.prototype.length实例方法String.prototype.charAt()String.prototype.charCodeAt()String.prototype.concat()slice()
substr
ing
Zanebla
·
2023-10-09 22:28
JavaScript
javascript
开发语言
ecmascript
Minimum Window
Substr
ing
Python3Solution:fromcollectionsimportdefaultdictclassSolution:defminWindow(self,s:str,t:str)->str:need=defaultdict(int)window=defaultdict(int)forchint:need[ch]+=1left,right=0,0valid=0start,nlen=0,floa
SincX
·
2023-10-09 21:12
LeetCode每日一题
Minimum Window
Substr
ing刷题笔记
没做出来,参考的该回答classSolution:defminWindow(self,s:str,t:str)->str:#hashtabletostoretherequiredcharfrequencyneed=collections.Counter(t)#totalcharactercountweneedtocareaboutmissing=len(t)#windowStartandwindo
waiting不是违停
·
2023-10-09 21:41
LeetCode
Python刷题
leetcode
python
Minimum Window
Substr
ing(图解)
76.MinimumWindow
Substr
ingGivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO
Super_Whw
·
2023-10-09 21:11
Leetcode
Favorate
[图解]
[python 刷题] 567 Permutation in String
returntrueifs2containsapermutationofs1,orfalseotherwise.Inotherwords,returntrueifoneofs1’spermutationsisthe
substr
ingofs2
GoldenaArcher
·
2023-10-09 21:41
#
leetcode
python
开发语言
LeetCode-76 Minimum Window
Substr
ing
DescriptionGivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO(n).Note:•IfthereisnosuchwindowinSthatcoversallcharactersinT,returntheemptystring“”.•Iftherei
温暖℡
·
2023-10-09 21:40
python
leetcode
LeetCode76:滑动窗口 Minimum Window
Substr
ing(python)
题解:滑动窗口importcollectionsclassSolution(object):defminWindow(self,s:str,t:str)->str:############分析过程########################SlidingWindow+2pointers#S='A(DOBE(C(ODEBA)NC)';T='ABC'#left@#right@#dic:{'A':1
耶呼弟
·
2023-10-09 21:40
python
Minimum Window
Substr
ing
GivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO(n).Example:Input:S="ADOBECODEBANC",T="ABC"Output:"BANC"Note:IfthereisnosuchwindowinSthatcoversallcharac
weixin_30566149
·
2023-10-09 21:40
python
Minimum Window
Substr
ing
题目链接https://leetcode.com/problems/minimum-window-
substr
ing/题目原文GivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO
weixin_30485291
·
2023-10-09 21:39
python
数据结构与算法
Minimum Window
Substr
ing (python+CPP)
Leetcode76.MinimumWindow
Substr
ing题目解法:slidingwindow题目解法:slidingwindow直接上leetcode官方solutionWestartwithtwopointers
努利!奋斗!
·
2023-10-09 21:07
Leetcode
双指针
python
leetcode
c++
Minimum Window
Substr
ing的思路与python实现
GivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO(n).Example:Input:S="ADOBECODEBANC",T="ABC"Output:"BANC"Note:IfthereisnosuchwindowinSthatcoversallcharac
千追万追
·
2023-10-09 21:37
leetcode
Minimum Window
Substr
ing @python
题目GivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO(n).Forexample,S=“ADOBECODEBANC”T=“ABC”Minimumwindowis“BANC”.Note:IfthereisnosuchwindowinSthatcoversal
风澈云间
·
2023-10-09 21:07
Leetcode
leetcode
Minimum Window
Substr
ing
classSolution(object):defminWindow(self,s,t):""":types:str:typet:str:rtype:str"""ts=set(t)tcnt={}forttint:tv=tcnt.setdefault(tt,0)tcnt[tt]=tv+1pos={}matchpos={}minp0=0minp1=len(s)scnt={}forp,cinenumer
激荡数十年
·
2023-10-09 21:36
算法
python
【leetcode 76】 Minimum Window
Substr
ing
/*********************************************************************GivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO(n).Forexample,S="ADOBECODEBANC"T=
chrdww
·
2023-10-09 20:03
leetcode
算法
Minimum Window
Substr
ing
76.MinimumWindow
Substr
ingHard10234535AddtoListShareGiventwostringssandtoflengthsmandnrespectively,returntheminimumwindow
substr
ingofssuchthateverycharacterint
Sterben_Da
·
2023-10-09 20:32
leetcode-python
leetcode
python
算法
Minimum Window
Substr
ing
problemGivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO(n).Forexample,S=“ADOBECODEBANC”T=“ABC”Minimumwindowis“BANC”.solutionclassSolution(object):defmin
PKU_Jade
·
2023-10-09 20:31
python
substring
leetcode
Minimum Window
Substr
ing
76.MinimumWindow
Substr
ingHardGivenastringSandastringT,findtheminimumwindowinSwhichwillcontainallthecharactersinTincomplexityO
Haskei
·
2023-10-09 20:01
LeeCode_Array
[python 刷题] 76 Minimum Window
Substr
ing
[python刷题]76MinimumWindow
Substr
ing题目:Giventwostringssandtoflengthsmandnrespectively,returntheminimumwindow
substr
ingofssuchthateverycharacterint
GoldenaArcher
·
2023-10-09 20:31
#
leetcode
python
开发语言
代买随想录二刷day57
文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档文章目录前言一、力扣647.回文子串二、力扣516.最长回文子序列前言一、力扣647.回文子串classSolution{publicintcount
Substr
ings
乱世在摸鱼
·
2023-10-09 18:31
算法
数据结构
java
动态规划
leetcode
C语言基础三
1、截取指定字符串#include#include#include//第一种void
substr
Action1(char*result,char*str,intstart,intend){char*temp
芳心之纵火犯
·
2023-10-09 18:45
上一页
20
21
22
23
24
25
26
27
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他