rpad函式

"rpad('tech'

rpad函式從右邊對字符串使用指定的字元進行填充 rpad(string,padded_length,[pad_string]) string 表示:被填充的字元串 padded_length 表示:字元的長度,是返回的字元串的數量,如果這個數量比原字元串的長度要短,rpad函式將會把字元串截取成從左到右的n個字元; pad_string 是個可選參數,這個字元串是要貼上到string的右邊,如果這個參數未寫,lpad函式將會在string的右邊貼上空格。 例如: rpad('tech', 7); 將返回'tech ' rpad('tech', 2); 將返回'te' rpad('tech', 8, '0'); 將返回'tech0000' rpad('tech on the net', 15, 'z'); 將返回 'tech on the net' rpad('tech on the net', 16, 'z'); 將返回 'tech on the netz'

相關詞條

相關搜尋

熱門詞條

聯絡我們