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


Ruby String center()用法及代码示例


center是Ruby中的String类方法,用于将给定字符串的宽度居中。如果指定的宽度大于给定字符串的长度,则此方法将返回指定宽度的新字符串,其中给定字符串居中并填充,否则将仅返回给定字符串。

用法:
str.center(width, padstr='')->new_str

参数:此处,str是给定的字符串,而width是用于将字符串居中的指定宽度。


返回值:此方法可以返回新的修改后的字符串new_str或相同的字符串。

示例1:

#ruby 2.3.1  
    
# Ruby program to demonstrate 
# the center method 
    
# Taking a string and 
# using the method 
puts "String".center(5) 
puts "Methods".center(18)

输出:

String
     Methods

示例2:

#ruby 2.3.1  
    
# Ruby program to demonstrate 
# the center method 
    
# Taking a string and 
# using the method 
puts "Ruby".center(9, '456') 
puts "String Class".center(18, '789')

输出:

45Ruby456
789String Class789


相关用法


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