Ruby 字符串 chr 方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程