oracle截取字符(substr)检索字符位置(instr)⽰例介绍
⼀:理论
oracle 截取字符(substr),检索字符位置(instr) case when then else end语句使⽤收藏
常⽤函数:substr和instr
1.SUBSTR(string,start_position,[length])求⼦字符串,返回字符串
字符串长度截取
解释:string 元字符串
start_position 开始位置(从0开始)
length 可选项,⼦字符串的个数
For example:
substr("ABCDEFG", 0); //返回:ABCDEFG,截取所有字符
substr("ABCDEFG", 2); //返回:CDEFG,截取从C开始之后所有字符
substr("ABCDEFG", 0, 3); //返回:ABC,截取从A开始3个字符
substr("ABCDEFG", 0, 100); //返回:ABCDEFG,100虽然超出预处理的字符串最长度,但不会影响返回结果,系统按预处理字符串最⼤数量返回。
substr("ABCDEFG", -3); //返回:EFG,注意参数-3,为负值时表⽰从尾部开始算起,字符串排列位置不变。
2.INSTR(string,subString,position,ocurrence)查字符串位置
解释:string:源字符串
subString:要查的⼦字符串
position:查的开始位置
ocurrence:源字符串中第⼏次出现的⼦字符串
For example:
INSTR('CORPORATE FLOOR','OR', 3, 2)中,源字符串为'CORPORATE FLOOR', ⽬标字符串为'OR',
起始位置为3,取第2个匹配项的位置;返回结果为 14 '
⼆:实际测试
select substr('OR:com.lcs.wc.placeholder.Placeholder:860825',INSTR('OR:com.lcs.wc.placeholder.Placeholder:860825',':', 1, 2)+1,length('OR:com.lcs.wc.placeholder.Placeholder:860825')) ,INSTR('OR:com.lcs.wc.placeholder.Placeholder:860825',':', 1, 2),
length('OR:com.lcs.wc.placeholder.Placeholder:860825') From dual;
测试成功

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。