gpt4 book ai didi

ruby - 在 Ruby 中以 unicode 代码的形式打印字符串

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

有什么方法可以调用 "hello" 来获取 '\u0068\u0065\u006c\u006c\u006f'

最佳答案

是也不是。 String#codepoints 在整数数组中返回这些:

"hello".codepoints #=> [104, 101, 108, 108, 111]

如果你需要它作为转义序列,试试这个:

"hello".codepoints.map {|c| "\\u#{sprintf("%04x", c)}"}.join

如果您想要其他解决方案(在评论中归功于@MattyK):

"hello".codepoints.map{|c| '\u%04X' % c}.join

关于ruby - 在 Ruby 中以 unicode 代码的形式打印字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18007083/

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