当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String.center用法及代码示例


本文简要介绍ruby语言中 String.center 的用法。

用法

center(width, padstr=' ') → new_str

strwidth 中居中。如果 width 大于 str 的长度,则返回一个长度为 width 的新 String ,其中 str 居中并用 padstr 填充;否则,返回 str

"hello".center(4)         #=> "hello"
"hello".center(20)        #=> "       hello        "
"hello".center(20, '123') #=> "1231231hello12312312"

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 String.center。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。