Ruby:打印不可打印的数据字符串

发布于 2024-11-06 09:18:18 字数 217 浏览 0 评论 0原文

如果我有一个变量 x,它有时是一个普通的可打印字符串,有时是一些随机的十六进制数据(包括不可打印的字符),我如何可靠地打印该空间填充?前任:

def print(x)
  puts("%-15s" % x) 
end

x = "test"
print(x) 
x = Array.new(256) { rand(256) }.pack('c*')
print(x) 

If I have a variable, x, that will sometime be a normal printable string, and sometimes be some random hex data (including unprintable chars), how can I reliably print that will space padding? ex:

def print(x)
  puts("%-15s" % x) 
end

x = "test"
print(x) 
x = Array.new(256) { rand(256) }.pack('c*')
print(x) 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我很OK 2024-11-13 09:18:18
def print(x)
  puts "%-15s" % [x.inspect]
end

如果你想去掉 "..."

puts "%-15s" % [x.inspect[1..-2]]
def print(x)
  puts "%-15s" % [x.inspect]
end

And if you want to get rid of the "...":

puts "%-15s" % [x.inspect[1..-2]]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文