Ruby 字符串 encoding方法
encoding 是Ruby中的一个字符串类方法,用于返回代表对象编码的Encoding对象。
语法: str.encoding
参数: 这里,str是给定的字符串。
返回: 一个编码对象。
例子 1 :
# Ruby program to demonstrate
# the encoding method
# Taking a string and
# using the method
puts "R\xC3\xA9sum\xC3\xA9".encoding
puts "Ruby\n\n".encoding
输出
UTF-8
UTF-8
例2 :
# Ruby program to demonstrate
# the encoding method
# Taking a string and
# using the method
puts "Sample".encoding
puts "Input\n\n".encoding
输出
UTF-8
UTF-8