如何获取字符序列,例如"AA"
从列索引26
?
问问题
1598 次
3 回答
9
这是一个将为您处理索引的递归哈希:
index_hash = Hash.new {|hash,key| hash[key] = hash[key - 1].next }.merge({0 => "A"})
index_hash[26] #=> "AA"
这里的关键是.next
方法,当发送到字符串时,将返回按字母顺序排列的字符串,例如"CD".next #=> "CE"
.
你能澄清你的第一个问题吗?
于 2012-11-27T06:41:12.573 回答
2
class Numeric
Alph = ("A".."Z").to_a
def alph
s, q = "", self
(q, r = (q - 1).divmod(26)) && s.prepend(Alph[r]) until q.zero?
s
end
end
(26+1).alph #=> "AA"
于 2012-11-27T07:18:22.840 回答
0
c = "A"
26.times { c = c.next }
c # => "AA"
于 2018-10-13T12:20:08.540 回答