2Hi.Biz
Trang chủ | TWIG | Xtscript | Templates | Xtgem
Functions Xtscript
AiChat.Wap.Sh
str pad
Pad một chuỗi với độ dài tối thiểu quy định từ chuỗi khác
[...] = optional ... = your value[var $... = ]str_pad $val=…;$pad_length=…;$pad_string=…[;$pad_type=…]
$ Pad_length phải được xác định nó là tổng chiều dài tối thiểu của chuỗi sau khi đệm
KHÔNGchiều dài của đệm
$ Pad_string là tùy chọn (mặc định là dấu cách)
$ Pad_typelà tùy chọn (mặc định là đúng)
Tùy chọn là
STR_PAD_RIGHT
STR_PAD_LEFT
STR_PAD_BOTH padding được chia đều với bất kỳ phụ đi sang bên phải
Code ví dụ:
<!--parser:xtscript-->
# Default pad_string is spaces
# Default pad_type is STR_PAD_RIGHT
var $input = foobar
var $pad_length = 12
var $output = call str_pad $val=$input;$pad_length=$pad_length
print input = $input<br />
print only 1 space will be visible in normal output<br />
print output = |$output|
print <pre>pre formatted output shows all the spaces\noutput = |$output|</pre>

# Padding with a string or character
var $pad_length = 15
var $pad_string = 12345
var $pad_type=STR_PAD_BOTH
var $output = call str_pad $val=$input; $pad_length=$pad_length; $pad_string=$pad_string; $pad_type=$pad_type
print input = $input<br />
print output = $output
<!--/parser:xtscript-->
Code đã chạy:
input = foobar
only 1 space will be visible in normal output
output = |foobar |
pre formatted output shows all the spaces
output = |foobar      |
input = foobar
output = 1234foobar12345