Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 ruby 脚本将构建结果提交给 hudson。我能找到的小文档说标签中的数据是“hexBinary”格式。如何获取像“Hello, world”这样的简单红宝石字符串并将其转换为该格式?
我不确定哈德森,也不肯定以下是hexBinary。但这是我最好的尝试。
"Hello world".unpack("H*") # => ["48656c6c6f20776f726c64"]
所以只要得到字符串......
"Hello world".unpack("H*").first
我对 hexBinary 格式感到困惑,因为我找不到任何明确的例子来说明它到底是什么。