oracle字符串操作:拼接、替換、截取、查找
阿新 • • 發佈:2017-11-30
串操作 ora sta osi 文章 replace str .html .com
一、拼接字符串
1、使用“||”來拼接字符串:
select ‘拼接‘||‘字符串‘ as Str from student;
2、使用concat(param1,param2)函數實現:
select concat(‘拼接‘,‘字符串‘) as Str from student;
註:oracle的concat()方法只支持兩個參數,如果拼接多個參數,可以嵌套concat():
select concat(concat(‘拼接‘,‘字符串‘),‘ab‘) as Str from student;
二、截取字符串
SUBSTR(string,start_position,[length]),獲取子字符串
string:源字符串
start_position:開始位置
length:字符串的長度[可選]
1 substr("ABCDEFG", 0); //返回:ABCDEFG,截取所有字符 2 substr("ABCDEFG", 2); //返回:CDEFG,截取從C開始之後所有字符 3 substr("ABCDEFG", 0, 3); //返回:ABC,截取從A開始3個字符 4 substr("ABCDEFG", 0, 100); //返回:ABCDEFG,100雖然超出預處理的字符串最長度,但不會影響返回結果,系統按預處理字符串最大數量返回。 5 substr("ABCDEFG", -3); //返回:EFG,註意參數-3,為負值時表示從尾部開始算起,字符串排列位置不變。
三、查找字符串
INSTR(string,subString,position,ocurrence)查找字符串位置
string:源字符串
subString:要查找的子字符串
position:查找的開始位置
ocurrence:源字符串中第幾次出現的子字符串
select INSTR(‘CORPORATE FLOOR‘,‘OR‘, 3, 2) as loc from dual
四、替換字符串
replace(strSource, str1, str2) 將strSource中的str1替換成str2
strSource:源字符串
str1: 要替換的字符串
str2: 替換後的字符串
select ‘替換字符串‘ as oldStr, replace(‘替換字符串‘, ‘替換‘, ‘修改‘) as newStr from dual
註:該文章參考原版:https://www.cnblogs.com/smallrock/p/3507022.html
oracle字符串操作:拼接、替換、截取、查找