Oracle Lpad () function and Rpad () function

Source: Internet
Author: User

--1. The Lpad function populates the left string with some specific characters whose syntax is formatted as follows:Lpad (String,n,[pad_string])--string: But the character or argument--N: The length of the character, is the number of strings returned, if this number is shorter than the length of the original string, the Lpad function will intercept the string as a left-to-right n character;--pad_string: is an optional parameter, this string is to be pasted to the left of the string, if this argument is not written, the Lpad function will paste a space on the left side of the string. --For example:Lpad ('Tech',7);--will return ' tech 'Lpad ('Tech',2);--will return ' Te 'Lpad ('Tech',8,'0');--will return ' 0000tech 'Lpad ('Tech on the net', the,'Z');--will return ' tech on the net 'Lpad ('Tech on the net', -,'Z');--will return ' Ztech on the net '--------------------------------------2. The use of the Rpad () function:--The rpad function populates the right string with some specific characters whose syntax is formatted as follows:Rpad (String,n,[pad_string])--string: But the character or argument--N: The length of the character, is the number of strings returned, if this number is shorter than the length of the original string, the Lpad function will intercept the string as a left-to-right n character;--pad_string: is an optional parameter, this string is to be pasted to the right of the string, if this argument is not written, the Lpad function will paste a space on the right side of the string. --For example:Rpad ('Tech',7);--will return ' tech 'Rpad ('Tech',2);--will return ' Te 'Rpad ('Tech',8,'0');--will return ' tech0000 'Rpad ('Tech on the net', the,'Z');--will return ' tech on the net 'Rpad ('Tech on the net', -,'Z');--will return ' tech on the Netz '

Oracle Lpad () function and Rpad () function

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.