📜  红宝石 |字符串转储方法

📅  最后修改于: 2022-05-13 01:55:37.628000             🧑  作者: Mango

红宝石 |字符串转储方法

dump是 Ruby 中的 String 类方法,用于生成给定字符串的一个版本,其中所有非打印字符由 \nnn 表示法替换,并且所有特殊字符都被转义。

示例 1:

# Ruby program to demonstrate 
# the dump method 
       
# Taking a string and 
# using the method
str = "ruby \n ''".dump
  
puts str.dump

输出:

"\"ruby \\n ''\""

示例 2:

# Ruby program to demonstrate 
# the dump method 
       
# Taking a string and 
# using the method
str = "yumy \n\n\n ''".dump
  
puts str.dump

输出:

"\"yumy \\n\\n\\n ''\""