如何理解lpad和rpad函数
这篇文章将为大家详细讲解有关如何理解lpad和rpad函数,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
一、Lpad函数
lpad函数将左边的字符串填充一些特定的字符其语法格式如下:lpad(string,n,[pad_string])
string:字符或者参数
n:字符的长度,是返回的字符串的数量,如果这个数量比原字符串的长度要短,lpad函数将会把字符串截取成从左到右的n个字符;
pad_string:可选参数,这个字符串是要粘贴到string的左边,若这个参数未写,lpad函数将会在string的左边粘贴空格。
select lpad('tech', 7) from dual; 将返回' tech'
select lpad('tech', 2) from dual; 将返回'te'
select lpad('tech', 8, '0') from dual; 将返回'0000tech'
select lpad('tech on the net', 15, 'z') from dual; 将返回'tech on the net'
select lpad('tech on the net', 16, 'z') from dual; 将返回'ztech on the net'
SQL> select lpad('tech', 7) from dual;
LPAD('T
-------
tech
SQL> select lpad('tech', 2) from dual;
LP
--
te
SQL> select lpad('tech', 8, '0') from dual;
LPAD('TE
--------
0000tech
SQL> select lpad('tech on the net', 15, 'z') from dual;
LPAD('TECHONTHE
---------------
tech on the net
SQL> select lpad('tech on the net', 16, 'z') from dual;
LPAD('TECHONTHEN
----------------
ztech on the net
SQL>
二、Rpad函数
rpad函数将右边的字符串填充一些特定的字符其语法格式如下:rpad(string,n,[pad_string])
string:字符或者参数
n:字符的长度,是返回的字符串的数量,如果这个数量比原字符串的长度要短,lpad函数将会把字符串截取成从左到右的n个字符;
pad_string:可选参数,这个字符串是要粘贴到string的右边,如果这个参数未写,lpad函数将会在string的右边粘贴空格。
select rpad('tech', 7) from dual; 将返回' tech'
select rpad('tech', 2) from dual; 将返回'te'
select rpad('tech', 8, '0') from dual; 将返回'tech0000'
select rpad('tech on the net', 15, 'z') from dual; 将返回'tech on the net'
select rpad('tech on the net', 16, 'z') from dual; 将返回'tech on the netz'
SQL> select rpad('tech', 7) from dual;
RPAD('T
-------
tech
SQL> select rpad('tech', 2) from dual;
RP
--
te
SQL> select rpad('tech', 8, '0') from dual;
RPAD('TE
--------
tech0000
SQL> select rpad('tech on the net', 15, 'z') from dual;
RPAD('TECHONTHE
---------------
tech on the net
SQL> select rpad('tech on the net', 16, 'z') from dual;
RPAD('TECHONTHEN
----------------
tech on the netz
关于如何理解lpad和rpad函数就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341