Ruby 字符串 inspect方法

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"

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程