gpt4 book ai didi

ruby - 将空格打印并显示为字符

转载 作者:数据小太阳 更新时间:2023-10-29 08:28:12 26 4
gpt4 key购买 nike

我没能弄清楚如何打印和显示空白字符作为我实际上可以“看到”的东西。例如,

x = "123\n"
print x

我希望输出是

123\n

而不是

123
.

上面的'.'表示由 '\n' 创建的新行。

最佳答案

s = "abc\ndef"

p s
# >> "abc\ndef"

# it's equivalent to
puts s.inspect
# >> "abc\ndef"

关于ruby - 将空格打印并显示为字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13252823/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com