Ruby中的chr函数根据编码返回包含int值表示的字符的字符串。
用法:string.chr([encoding])
参数:该函数采用要进行编码的整数值。如果要根据编码进行编码,则采用非强制性参数编码。
返回值:该函数返回字符。
范例1:
# Ruby Program of Integer chr function
# Initializing the numbers
num1 = 65
num2 = 66
num3 = 97
num4 = 245
# Prints the chr
# after encoding
puts num1.chr
puts num2.chr
puts num3.chr
puts num4.chr(Encoding::UTF_8)
输出:
A B a õ
范例2:
# Ruby Program of Integer chr function
# Initializing the numbers
num1 = 119
num2 = 68
num3 = 89
num4 = 255
# Prints the chr
# after encoding
puts num1.chr
puts num2.chr(Encoding::UTF_8)
puts num3.chr
puts num4.chr(Encoding::UTF_8)
输出:
w D Y ÿ
相关用法
- Ruby Integer integer?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer succ()用法及代码示例
- Ruby Integer truncate()用法及代码示例
- Ruby Integer magnitude用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer chr function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。