这篇文章将为大家详细讲解有关如何理解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函数就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。