Ruby 字符串 chr 方法
chr 是Ruby中的一个字符串类方法,用于返回字符串开头的一个字符。
语法: str.chr
参数: 这里,str是给定的字符串。
返回: 在字符串的开头有一个单字符的字符串。
例子 1 :
# Ruby program to demonstrate
# the chr method
# Taking a string and
# using the method
puts "Ruby".chr
puts "Method".chr
输出
R
M
例2 :
# Ruby program to demonstrate
# the chr method
# Taking a string and
# using the method
puts "String".chr
puts "Class".chr
输出
S
C