我觉得我在这里使用 Ruby 的方式是错误的:我想为正则表达式生成所有可能的匹配项/[0-9A-Za-z]{3}/
我不能使用succ
,因为"999".succ => "1000"
和"zZz".succ => "aaAa"
。我无法使用范围,因为我似乎无法联合(0..9), ('A'..'Z'), ('a'..'z')
所以我写道:
def alphaNumeric
#range and succ don't cut it for [0-9a-zA-Z]
(0..9).each{|x|yield x.to_s}
('a'..'z').each{|x|yield x}
('A'..'Z').each{|x|yield x}
end
def alphaNumericX3
alphaNumeric{ |a|
alphaNumeric{ |b|
alphaNumeric{ |c|
yield a+b+c
}
}
}
end
alphaNumericX3.each{|x|p x}
我的问题是2折:
有没有更丑陋的方法,有没有一种方法alphaNumericX3
可以从参数中定义(alphaNumeric, 3)
?
PS我知道我可以为范围定义一个新类。但这绝对不会更短。如果您可以使下一个块比上面的块更短、更清晰,请执行以下操作:
class AlphaNum
include Comparable
attr :length
def initialize(s)
@a=s.chars.to_a
@length=@a.length
end
def to_s
@a.to_s
end
def <=>(other)
@a.to_s <=> other.to_s
end
def succ
def inc(x,n)
return AlphaNum.new('0'*(@length+1)) if x<0
case n[x]
when '9'
n[x]='A'
when 'Z'
n[x]='a'
when 'z'
n[x]='0'
return inc(x-1,n)
else
n[x]=n[x].succ
end
return AlphaNum.new(n.to_s)
end
inc(@length-1,@a.clone)
end
end
# (AlphaNum.new('000')..AlphaNum.new('zzz')).each{|x|p x}
# === alphaNumericX3.each{|x|p x}