Oracle基礎(四) 字串函式

2022-10-11 18:21:13 字數 1071 閱讀 6838

1、concat(char1,char2)

--將兩個字串拼接後返回

select concat(ename,sal) from emp;

--巢狀使用

select concat(concat(ename,':'),sal) from emp;

使用||操作符來連線字串

select ename||':'||sal from emp;
2、length(char)

返回引數指定的長度,varchar2則實際長度,char則長度包括後補空格

select ename,length(ename) from emp;
3、 upper、lower、initcap

將字串轉換為大寫、小寫、首字母大寫

select 

upper('hello world'),

lower('hello world'),

initcap('hello world')

from dual;

--查詢結果:hello world,hello world,hello world

4、trim、ltrim、rtrim

去除字串中指定字元

--去除兩邊

select trim('e' from 'eeeliteeeee') from dual;--結果:lit

--去除左邊

select ltrim('eeeliteeeee','e') from dual;--結果:liteeeee

select ltrim('esrereserersliteee','res') from dual;--結果:liteee

--去除右邊

select rtrim('eeeliteeeee','e') from dual;--結果:eeelit

5、lpad,rpad補位函式

將指定字串顯示指定長度,當不足時補充若干個指定字元以達到該長度,若小於則從左到右截。

python入門(四) 字串

0.字串的表示 字串可以用單引號 和雙引號 表示。若想在字串中表示單 雙引號,則在單 雙引號外面用雙 單引號括起來。故內部單 雙引號成為字元。1.字串的索引 字串的索引可以正序排列也可以倒序排列。正序從第乙個字元開始索引為0,正向遞增 倒敘從最後乙個字元開始索引為 1,反向遞減。2.字串的切片 返回...

C語言(四) 字串

define crt secure no warnings include include include 使用字元陣列儲存字串 void main char str 8 char str 10 chinese str 0 s printf s n str getchar 見圖一效果圖 字元指標 v...

C語言學習(四)字串函式

1.strcat 字串拼接函式 用 法 char strcat char 字元陣列1,char 字元陣列2 說 明 把字元陣列2拼接到字元陣列1的後面 include include int main void 2.stpcpy拷貝乙個字串到另乙個 用 法 char stpcpy char 字元陣列...