我想打印字符串的转义或原始版本。 例如:给定此字符串:
"a,
b,
c,
d"
我想要
"a,\nb,\nc,\nd".
有可能吗?
答案 0 :(得分:4)
hours
答案 1 :(得分:4)
string = 'a,
b,
c,
d'
> p string.inspect
#=> "\"a,\\nb,\\nc,\\nd\""
# "*** expected output ***"
> p string.inspect.delete('\"')
#=> "a,\\nb,\\nc,\\nd"
<强> Demo 强>