Ruby 字符串 inspect方法
inspect 是Ruby中的一个字符串类方法,用于返回给定字符串的可打印版本,用引号包围,并转义特殊字符。
语法: str.expect
参数
返回: 这里,str是给定的字符串。
例子 1 :
# Ruby program to demonstrate
# the inspect method
# Taking a string and
# using the method
puts "Sample".inspect
puts "Articles".inspect
输出
"Sample"
"Articles"
例2 :
# Ruby program to demonstrate
# the inspect method
# Taking a string and
# using the method
puts "Ru \n y".inspect
puts "Ar\b\\bcles".inspect
输出
"Ru \n y"
"Ar\b\\bcles"